手把手帶你實現(xiàn)Spring绽慈、Spring MVC與Mybatis整合工程的搭建

系統(tǒng)的學完了Spring、Spring MVC以及Mybatis之后我們就可以進行這三者的整合工作了辈毯,其實不難坝疼,就是將這三個框架的配置文件提取出來放在一個項目中,然后便可以進行開發(fā)(就是這么簡單)谆沃。此篇文章我們將在前篇文章Mybatis3.x與Spring3.x整合的基礎上將Spring MVC的配置引入進來即可(超級簡單)钝凶。

1.整合的思路

1.在Mybatis3.x與Spring3.x整合的基礎上添加Spring MVC。

2.Spring要管理Spring MVC編寫的Handler(controller)唁影、Mybatis的SqlSessionFactory耕陷、mapper、數(shù)據(jù)源据沈。

其實整合思路就是下面這三步:

  1. 第一步:整合dao(即mapper)啃炸,完成Spring與Mybatis的整合。
  2. 第二步:整合service卓舵,Spring管理service接口,service中可以調用Spring容器中的dao(mapper)膀钠。
  3. 第三步:整合controller掏湾,Spring管理controller接口裹虫,在controller調用service。

2.導入jar包

mybatis-3.x.jar融击、spring3.x.jar(包含springmvc的jar包)筑公、mybatis與spring的整合jar、數(shù)據(jù)庫驅動包尊浪、log4j.jar匣屡、jstl.jar。如下:

3.工程結構

3.1需要創(chuàng)建的配置文件

  1. applicationContext-dao.xml---配置數(shù)據(jù)源拇涤、SqlSessionFactory捣作、mapper掃描器。
  2. applicationContext-service.xml---配置service接口鹅士。
  3. applicationContext-transaction.xml--事務管理券躁。
  4. sprintmvc.xml---springmvc的配置,配置處理器映射器掉盅、適配器也拜、視圖解析器(這里我們統(tǒng)一采用注解的方式進行開發(fā))。
  5. SqlMapConfig.xml---mybatis的配置文件趾痘,配置別名慢哈、settings、mapper永票。

工程目錄如下:

3.2各個配置文件的內容

applicationContext-dao.xml:


    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
           xmlns:context="http://www.springframework.org/schema/context"
           xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">

    <!-- 加載配置文件 -->
    <context:property-placeholder location="classpath:config/db.properties" />

    <!-- 數(shù)據(jù)庫連接池 -->
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
        destroy-method="close">
        <property name="driverClassName" value="${jdbc.driver}" />
        <property name="url" value="${jdbc.url}" />
        <property name="username" value="${jdbc.username}" />
        <property name="password" value="${jdbc.password}" />
        <property name="maxIdle" value="5" />
    </bean>


    <!-- SqlsessionFactory -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!-- 數(shù)據(jù)源 -->
        <property name="dataSource" ref="dataSource"/>
        <!-- mybatis配置文件 -->
        <property name="configLocation" value="classpath:config/mybatis/SqlMapConfig.xml"/>
    </bean>
    
        
    <!--
    MapperScannerConfigurer:mapper的掃描器卵贱,將包下邊的mapper接口自動創(chuàng)建代理對象,
    自動創(chuàng)建到spring容器中瓦侮,bean的id是mapper的類名(首字母小寫)
     -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <!-- 配置掃描包的路徑
        如果要掃描多個包艰赞,中間使用半角逗號分隔
        要求mapper.xml和mapper.java同名且在同一個目錄
         -->
        <property name="basePackage" value="mapper"/>
        <!-- 使用sqlSessionFactoryBeanName -->
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>

    </bean>
    
</beans>

applicationContext-service.xml:


<beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
           xmlns:context="http://www.springframework.org/schema/context"
           xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">


    
</beans>

applicationContext-transaction.xml:配置事務,在配置文件中使用聲明式事務配置


<beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
           xmlns:context="http://www.springframework.org/schema/context"
           xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">


        <!--使用聲明式的控制配置肚吏,可以有效的規(guī)范代碼-->
        <!--事務管理器的配置-->
        <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource"/>
        </bean>

        <!--配置通知-->
        <tx:advice id="txAdvice" transaction-manager="transactionManager">
            <tx:attributes>
                <tx:method name="sava" propagation="REQUIRED"/>
                <tx:method name="insert*" propagation="REQUIRED"/>
                <tx:method name="update*" propagation="REQUIRED"/>
                <tx:method name="delete*" propagation="REQUIRED"/>
                <tx:method name="find*" propagation="SUPPORTS" read-only="true"/>
                <tx:method name="select*" propagation="SUPPORTS" read-only="true"/>
                <tx:method name="get*" propagation="SUPPORTS" read-only="true"/>
            </tx:attributes>
        </tx:advice>

        <!--配置aop-->
        <aop:config>
            <aop:advisor advice-ref="txAdvice" pointcut="execution(* service.impl.*.*(..))"/>
        </aop:config>

</beans>

sprintmvc.xml:

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">


    <!--使用spring組件掃描
    一次性配置此包下所有的Handler-->
    <context:component-scan base-package="controller"/>

    <!--注解處理器映射器-->
    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>
    
    <!--注解的適配器-->
    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/>

    <!--配置視圖解析器
    要求將jstl的包加到classpath
    prefix:代表請求url的前綴
    suffix:代表請求url的后綴
    設置了這兩個屬性值后我們在Controller中進行代碼開發(fā)時返回的modelandview對象設置的頁面路徑值就不用帶前綴名和后綴名了-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>


</beans>

SqlMapConfig.xml:

<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>

    <!-- 定義 別名 -->
    <typeAliases>
        <!-- 批量別名定義 指定包路徑方妖,自動掃描包下邊的pojo,定義別名罚攀,別名默認為類名(首字母小寫或大寫) -->
        <package name="po" />

    </typeAliases>


    <!--由于使用了spring和mybatis整合的mapper掃描器党觅,-->
    <!--這里就不用配置了-->
    <!--<mappers>-->
        <!--<package name="mapper"/>-->
    <!--</mappers>-->

</configuration>

在web.xml文件中加入對前端控制器的配置:

    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!--加載springmvc配置文件-->
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <!--配置文件的地址
            如果不配置contextConfigLocation,默認查找的配置文件名稱是classpath下的:servlet名稱+"-servlet.xml"即springmvc-servlet.xml-->
            <param-value>springmvc.xml</param-value>
        </init-param>
    </servlet>

    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <!--可以配置/:此工程所有的請求全部由springmvc解析斋泄,此種方式可以實現(xiàn)RESTful方式杯瞻,需要特殊處理對靜態(tài)文件的解析不能由springmvc解析
        可以配置*.do或者*.action,所有請求的url擴展名為.do或.action由springmvc解析,此中方法常用
        不可以配置/*,如果配置/*,返回jsp也由springmvc解析炫掐,這是不對的-->

        <url-pattern>*.action</url-pattern>
    </servlet-mapping>

另外還需要添加數(shù)據(jù)庫的配置文件db.properties:

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mybatis
jdbc.username=root
jdbc.password=xiaxunwu1996.

在src下創(chuàng)建各個包:mapper魁莉、po、controller、service旗唁,在web包下創(chuàng)建頁面包jsp畦浓,工程目錄如下:

經過上述步驟,我們便完成了Spring检疫、Spring MVC與Mybatis的整合讶请,是不是很簡單?沒錯就是這么簡單。接下來我將通過下篇文章一個案例帶你快速入門SSM開發(fā)介紹利用Spring屎媳、Spring MVC與Mybatis的整合項目進行開發(fā)一個案例帶你快速學會使用SSM框架開發(fā)項目夺溢。

4.聯(lián)系

If you have some questions after you see this article,you can tell your doubts in the comments area or you can find some info by clicking these links.

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市烛谊,隨后出現(xiàn)的幾起案子风响,更是在濱河造成了極大的恐慌,老刑警劉巖晒来,帶你破解...
    沈念sama閱讀 212,383評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件钞诡,死亡現(xiàn)場離奇詭異,居然都是意外死亡湃崩,警方通過查閱死者的電腦和手機荧降,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,522評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來攒读,“玉大人朵诫,你說我怎么就攤上這事””猓” “怎么了剪返?”我有些...
    開封第一講書人閱讀 157,852評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長邓梅。 經常有香客問我脱盲,道長,這世上最難降的妖魔是什么日缨? 我笑而不...
    開封第一講書人閱讀 56,621評論 1 284
  • 正文 為了忘掉前任钱反,我火速辦了婚禮,結果婚禮上匣距,老公的妹妹穿的比我還像新娘面哥。我一直安慰自己,他們只是感情好毅待,可當我...
    茶點故事閱讀 65,741評論 6 386
  • 文/花漫 我一把揭開白布尚卫。 她就那樣靜靜地躺著,像睡著了一般尸红。 火紅的嫁衣襯著肌膚如雪吱涉。 梳的紋絲不亂的頭發(fā)上刹泄,一...
    開封第一講書人閱讀 49,929評論 1 290
  • 那天,我揣著相機與錄音邑飒,去河邊找鬼循签。 笑死,一個胖子當著我的面吹牛疙咸,可吹牛的內容都是我干的。 我是一名探鬼主播风科,決...
    沈念sama閱讀 39,076評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼撒轮,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了贼穆?” 一聲冷哼從身側響起题山,我...
    開封第一講書人閱讀 37,803評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎故痊,沒想到半個月后顶瞳,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 44,265評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡愕秫,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,582評論 2 327
  • 正文 我和宋清朗相戀三年慨菱,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片戴甩。...
    茶點故事閱讀 38,716評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡符喝,死狀恐怖,靈堂內的尸體忽然破棺而出甜孤,到底是詐尸還是另有隱情协饲,我是刑警寧澤,帶...
    沈念sama閱讀 34,395評論 4 333
  • 正文 年R本政府宣布缴川,位于F島的核電站茉稠,受9級特大地震影響,放射性物質發(fā)生泄漏把夸。R本人自食惡果不足惜而线,卻給世界環(huán)境...
    茶點故事閱讀 40,039評論 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望扎即。 院中可真熱鬧吞获,春花似錦、人聲如沸谚鄙。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,798評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽闷营。三九已至烤黍,卻和暖如春知市,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背速蕊。 一陣腳步聲響...
    開封第一講書人閱讀 32,027評論 1 266
  • 我被黑心中介騙來泰國打工嫂丙, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人规哲。 一個月前我還...
    沈念sama閱讀 46,488評論 2 361
  • 正文 我出身青樓跟啤,卻偏偏與公主長得像,于是被迫代替她去往敵國和親唉锌。 傳聞我的和親對象是個殘疾皇子隅肥,可洞房花燭夜當晚...
    茶點故事閱讀 43,612評論 2 350

推薦閱讀更多精彩內容