mybatis集成spring---ssm

1.applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:aop="http://www.springframework.org/schema/aop"
      xmlns:tx="http://www.springframework.org/schema/tx"
      xmlns:context="http://www.springframework.org/schema/context"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd" default-autowire="byName">
    <!-- 注解扫描 -->
    <context:component-scan base-package="cn.itsource.service.impl"></context:component-scan>

    <!-- 加载属性文件 -->
    <context:property-placeholder location="classpath:db.properties"/>

    <!-- 数据源  使用 dbcp连接池 -->
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
       <property name="driverClassName" value="${jdbc.driverClassName}"></property>
       <property name="url" value="${jdbc.url}"></property>
       <property name="username" value="${jdbc.username}"></property>
       <property name="password" value="${jdbc.password}"></property>
    </bean>

    <!-- SqlSessionFactory -->
    <bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean">
       <property name="dataSource" ref="dataSource"></property>
       <!-- 去加载所有的mapper.xml文件  该文件放在resource包下了  -->
       <property name="mapperLocations" value="classpath:cn/itsource/mapper/*.xml"/>
        <!--定义公共的基础包  起别名 -->
       <property name="typeAliasesPackage" >
            <value>
                cn.itsource.query
                cn.itsource.domain
            </value>
       </property>
    </bean>

    <!-- 扫描器 -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
       <property name="basePackage" value="com.bjsxt.mapper"></property>
       <property name="sqlSessionFactoryBeanName" value="factory"></property>
    </bean>

    <!-- 事务管理器 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
       <property name="dataSource" ref="dataSource"></property>
    </bean>
        
    <!--开启事务注解的支持,默认会去找一个名称叫做transactionManager的事务管理器-->
    <tx:annotation-driven />

  
</beans>

2.springmvc.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
            http://www.springframework.org/schema/aop/spring-aop.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-3.0.xsd
            http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd " >
       
       <!-- 扫描注解,只扫描controller包 -->
       <context:component-scan base-package="com.bjsxt.controller"></context:component-scan>

       <!-- 开启注解驱动   相当于注册HandlerMapping和HandlerAdapter -->
       <mvc:annotation-driven></mvc:annotation-driven>

        <!--二种: 开启默认的控制器(实现静态资源放行) -->
        <mvc:default-servlet-handler />

       <!-- 视图解析器 -->
       <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
             <property name="prefix" value="/WEB-INF/pages/"></property>
             <property name="suffix" value=".jsp"></property>
       </bean>

        <!-- 为了处理返回的JSON数据的编码,默认是ISO-8859-1的,设置为UTF-8 主要是提供给ie浏览器 -->
      <bean id="mappingJacksonHttpMessageConverter"   
            class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
          <property name="supportedMediaTypes">
              <list>
                    <value>text/html;charset=UTF-8</value>
              </list>
          </property>
      </bean>

         <!-- 异常解析器  -->
       <bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
              <property name="exceptionMappings">
                    <props>
                          <prop key="org.springframework.web.multipart.MaxUploadSizeExceededException">/error</prop>
                    </props>
              </property>
        </bean>  

<!-- MultipartResovler 解析器 -->
        <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
            <!-- <property name="maxUploadSize" value="5000"></property> -->
        </bean>
   
         <!-- 配置拦截器 -->
    <!--     <mvc:interceptors>
            <bean class="com.bjsxt.interceptor.DemoInterceptor"></bean>
            <mvc:interceptor>
                <mvc:mapping path="/demo"/>
                <bean class="com.bjsxt.interceptor.DemoInterceptor"></bean>
            </mvc:interceptor>
        </mvc:interceptors> -->
        <!-- 拦截栈 -->
   <!--       <mvc:interceptors>
                <bean class="com.bjsxt.interceptor.DemoInterceptor"></bean>
                <bean class="com.bjsxt.interceptor.DemoInterceptor2"></bean>
        </mvc:interceptors> -->
</beans>

3.web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://java.sun.com/xml/ns/javaee                      
      http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
       <!-- 监听器 -->
      <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
      </listener>

      <!-- 上下文参数  -->
      <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:applicationContext.xml</param-value>
      </context-param>

      <!-- SpringMVC前端控制器 -->
      <servlet>
            <servlet-name>springmvc</servlet-name>
            <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
            <init-param>
                  <param-name>contextConfigLocation</param-name>
                  <param-value>classpath:springmvc.xml</param-value>
            </init-param>
            <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet-mapping>
            <servlet-name>springmvc</servlet-name>
            <url-pattern>/</url-pattern>
      </servlet-mapping>

      <!-- 字符编码过滤器 -->
      <filter>
            <filter-name>encoding</filter-name>
            <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
            <init-param>
                  <param-name>encoding</param-name>
                  <param-value>utf-8</param-value>
            </init-param>
      </filter>
      <filter-mapping>
            <filter-name>encoding</filter-name>
            <url-pattern>/*</url-pattern>
      </filter-mapping>
</web-app>

 

 
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

心之所向...

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值