1. 程式人生 > >Spring+Mybatis+SpringMVC整合

Spring+Mybatis+SpringMVC整合

1、建立工程匯入jar包

2、配置Mybatis、SpringMvc檔案

Mybatis核心檔案、資料庫.properties 、sql 對映檔案、SpringMvc核心檔案、web.xml配置檔案

 

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>Spinrg_Mybatis_Mvc</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  
  
  
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
  </context-param>
  <!-- 配置監聽器  web專案啟動的時候 載入Spring容器 -->
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  

  <!-- 前端控制器 -->
  <servlet>
    <servlet-name>springMvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
     
    <init-param>
        <!-- web專案啟動的時候載入SpringMVC的配置檔案 -->
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:springmvc.xml</param-value>
    </init-param>
  </servlet>
  
  <servlet-mapping>
     <servlet-name>springMvc</servlet-name>
     <!-- 
                 擷取請求的:被攔截到了會找名字為springMvc的前端控制器,前端控制器會交給處理器處理
        /*  :攔截所有請求  包括.jsp .js .css .png
        .do .action  只攔截do、action 或者自己配置的
        / 處理JSP外其它請求都攔截         
      -->
     <url-pattern>/</url-pattern>
  </servlet-mapping>
  
</web-app>

3、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:context="http://www.springframework.org/schema/context"
    xmlns:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring-1.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
   
   <!-- 掃描包 除了Controller的不掃描外其他都掃描  -->
   <context:component-scan base-package="com.ldd">
    <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
   </context:component-scan>
   
   
   <!-- 引入外部properties檔案 -->
   <context:property-placeholder location="classpath:jdbc.properties"/>
   <!-- 配置資料來源 -->
   <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="jdbcUrl" value="${jdbc.url}"></property>
        <property name="driverClass" value="${jdbc.driver}"></property>
        <property name="user" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>
<!-- spring事務管理 -->
    <bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <!-- 開啟基於註解的事務 -->
    <tx:annotation-driven transaction-manager="dataSourceTransactionManager"/>


   <!-- 
    整合mybatis 
        目的:1、spring管理所有元件。mapper的實現類。
                service==>Dao   @Autowired:自動注入mapper;
            2、spring用來管理事務,spring宣告式事務
    -->
    <!--創建出SqlSessionFactory物件  -->
    <bean id="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
        <!-- configLocation指定mybatis全域性配置檔案的位置 -->
        <property name="configLocation" value="classpath:sqlMapConfig.xml"></property>
        
        <!--mapperLocations: 載入對映檔案的位置 如果對映檔案和介面在一個包下就不配置下面這句了-->
        <!-- <property name="mapperLocations" value="classpath:com/ldd/user/mapper/*.xml"></property>  -->
    </bean>
    
    <!--
     預設使用的是SqlSessionFactory獲取的sqlSession  空構造方法實現的 
                   配置一個可以進行批量執行的sqlSession  -->
    <!-- <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <constructor-arg name="sqlSessionFactory" ref="sqlSessionFactoryBean"></constructor-arg>
        <constructor-arg name="executorType" value="BATCH"></constructor-arg>
    </bean> -->
    
    <!-- 掃描所有的mapper介面的實現,讓這些mapper能夠自動注入;
    base-package:指定mapper介面的包名
     -->
    <mybatis-spring:scan base-package="com.ldd.user.mapper"/>
    
    <!-- 
     下面這樣寫 和<mybatis-spring:scan/> 標籤的作用一樣的
     <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.ldd.user.mapper"></property>
    </bean> -->
    

</beans>