Spring + SpringMVC + Mybatis整合

Spring + SpringMVC + Mybatis整合

依賴(lài)

<!-- SpringMVC -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>3.2.8.RELEASE</version>
        </dependency>

        <!-- Spring-JDBC,要和spring-webmvc的版本一致 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>3.2.8.RELEASE</version>
        </dependency>

        <!-- MyBatis -->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.4.6</version>
        </dependency>

        <!-- MyBatis-Spring 整合jar包 -->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>1.3.2</version>
        </dependency>

        <!-- MySQL驅(qū)動(dòng)jar包 -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.28</version>
        </dependency>

        <!-- DBCP連接池 -->
        <dependency>
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.4</version>
        </dependency>

        <!-- 添加jackson廊散,自動(dòng)轉(zhuǎn)換為JSON數(shù)據(jù) -->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.9.4</version>
        </dependency>

        <!-- 添加jstl標(biāo)簽庫(kù) -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

        <!-- Junit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
        </dependency>


        <!-- 導(dǎo)入aspectj依賴(lài) -->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>1.8.13</version>
        </dependency>

        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.13</version>
        </dependency>

        <!-- 導(dǎo)入spring的aop -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>3.2.8.RELEASE</version>
        </dependency>

        <!-- 添加文件上傳的依賴(lài) -->
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.3.1</version>
        </dependency>

        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.4</version>
        </dependency>

配置數(shù)據(jù)庫(kù)連接信息 --- db.properties文件

url=jdbc:mysql://localhost:3306/db_blog3?useUnicode=true&characterEncoding=utf8
driver=com.mysql.jdbc.Driver
user=root
password=root
initSize=2
maxSize=10

Mybatis和Spring整合 --- spring-dao.xml

  • 讀取db.properties文件配置DBCP連接池創(chuàng)建數(shù)據(jù)源
  • 使用上面的數(shù)據(jù)源配置SqlSessionFactoryBean
  • 配置組件掃描Mybatis的接口mapper的包市咆,用于創(chuàng)建mapper接口對(duì)象
  • 配置批量掃描Mybatis的XXMapper.xml文件的MapperScannerConfigurer
  • 配置事務(wù)管理器
<?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:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-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/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">

    <!-- 組件掃描 用于自動(dòng)創(chuàng)建mapper包下的所有接口的對(duì)象,否則將不能使用@Resource注解的方式注入接口對(duì)象 -->
    <context:component-scan base-package="cn.tedu.blog.mapper" />
    
    <!-- 配置MapperScannerConfigurer -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <!-- 用于配置持久層接口在哪里这敬,指定mapper的包 -->
        <property name="basePackage" value="cn.tedu.blog.mapper" />
    </bean>
    
    <!-- 加載db.properties,其中定義了數(shù)據(jù)庫(kù)的配置信息 -->
    <util:properties id="dbConfig" location="classpath:db.properties" />

    <!-- 數(shù)據(jù)源 -->
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
        <property name="url" value="#{dbConfig.url}" />
        <property name="driverClassName" value="#{dbConfig.driver}" />
        <property name="username" value="#{dbConfig.user}" />
        <property name="password" value="#{dbConfig.password}" />
        <property name="initialSize" value="#{dbConfig.initSize}" />
        <property name="maxActive" value="#{dbConfig.maxSize}" />
    </bean>


    <!-- 配置SqlSessionFactoryBean -->
    <bean class="org.mybatis.spring.SqlSessionFactoryBean">
        <!-- 用于配置數(shù)據(jù)庫(kù)連接池 -->
        <property name="dataSource" ref="dataSource" />
        <!-- 用于配置持久層映射文件在哪里,所有的xml文件搜锰,使用通配符 -->
        <property name="mapperLocations" value="classpath:mappers/*.xml" />
    </bean>
    

    <!-- 配置事務(wù)管理器 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <!-- 注入數(shù)據(jù)源维贺,這里使用的是上面配置好的DataSource -->
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <!-- 開(kāi)啟事務(wù)注解 ,transaction-manager指定的是上面配置的事務(wù)管理器的id-->
    <tx:annotation-driven transaction-manager="transactionManager"/>
</beans>

Spring與SpringMVC不需要整合

  • 我們只需要?jiǎng)?chuàng)建一個(gè)springMVC.xml文件即可
  • 掃描controller包下告唆,組件掃描域携,自動(dòng)創(chuàng)建對(duì)象
  • 配置視圖解析器
  • 配置注解驅(qū)動(dòng)
  • 配置攔截器
  • 配置上傳文件的解析器
  • .....................
<?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:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-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/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">

    <!-- 組件掃描 自動(dòng)創(chuàng)建對(duì)象 -->
    <context:component-scan base-package="cn.tedu.blog.controller" />

    <!-- 配置ViewResolver視圖解析器 -->
    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/" />
        <property name="suffix" value=".jsp" />
    </bean>

    <!-- 配置驅(qū)動(dòng)簇秒,用于@ResponseBody的使用 -->
    <mvc:annotation-driven></mvc:annotation-driven>

    <mvc:interceptors>
        <mvc:interceptor>
            <!-- 配置攔截器的路徑 -->
            <mvc:mapping path="/blogger/*" />
            <mvc:mapping path="/blogType/*" />
            <!-- 配置不攔截的路徑 -->
            <mvc:exclude-mapping path="/blogger/showLogin.do"></mvc:exclude-mapping>
            <mvc:exclude-mapping path="/blogger/login.do"></mvc:exclude-mapping>
            <mvc:exclude-mapping path="/blogger/showInfo.do"></mvc:exclude-mapping>

            <bean class="cn.tedu.blog.interceptor.LoginInterceptor"></bean>
        </mvc:interceptor>
    </mvc:interceptors>
    
    <!-- 上傳組件的解析器 -->
    <bean id="multipartResolver"
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!-- 上傳文件大小 -->
        <property name="maxUploadSize" value="10000000"></property>
        <!-- 請(qǐng)求的編碼格式,必須和jSP的pageEncoding屬性一致秀鞭,以便正確讀取表單的內(nèi)容趋观,默認(rèn)為ISO-8859-1 -->
        <property name="defaultEncoding" value="utf-8"></property>
    </bean>

</beans>

業(yè)務(wù)層的配置文件 -- spring-service.xml

  • 配置組件自動(dòng)掃描業(yè)務(wù)層的類(lèi),自動(dòng)創(chuàng)建對(duì)象
<?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:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-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/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">

    <!-- 組件掃描 -->
    <context:component-scan base-package="cn.tedu.blog.service" />

</beans>

配置 web.xml 文件

  • 配置POST中文亂碼過(guò)濾器
  • 配置Spring的監(jiān)聽(tīng)器ContextLoaderListener锋边,用于在容器啟動(dòng)的時(shí)候就加載spring的配置文件
  • 配置SpringMVC的前端控制器DispatcherServlet皱坛,其中指定的是springMVC的配置文件springMVC.xml
<!-- 解決POST提交方式的中文亂碼的過(guò)濾器 -->
    <filter>
        <filter-name>CharacterEncodingFilter</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>CharacterEncodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    
    <!-- 配置SpringMVC的前端控制器 -->
    <servlet>
        <servlet-name>SpringMVC</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <!-- springmvc的配置文件 -->
            <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>*.do</url-pattern>
    </servlet-mapping>
    
    <!-- 使用ContextLoaderListener配置spring的監(jiān)聽(tīng)器,主要是在啟動(dòng)的時(shí)候加載spring的配置文件 -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
            <!-- 指定所有的spring配置文件豆巨,這里使用 * 通配符 -->
            <param-value>classpath:spring-*.xml</param-value>
    </context-param>
    
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

包的結(jié)構(gòu)

結(jié)構(gòu)
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末剩辟,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌贩猎,老刑警劉巖熊户,帶你破解...
    沈念sama閱讀 212,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異吭服,居然都是意外死亡嚷堡,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)艇棕,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)蝌戒,“玉大人,你說(shuō)我怎么就攤上這事欠肾∑康撸” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 158,369評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵刺桃,是天一觀的道長(zhǎng)粹淋。 經(jīng)常有香客問(wèn)我,道長(zhǎng)瑟慈,這世上最難降的妖魔是什么桃移? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,799評(píng)論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮葛碧,結(jié)果婚禮上借杰,老公的妹妹穿的比我還像新娘。我一直安慰自己进泼,他們只是感情好蔗衡,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著乳绕,像睡著了一般绞惦。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上洋措,一...
    開(kāi)封第一講書(shū)人閱讀 50,096評(píng)論 1 291
  • 那天济蝉,我揣著相機(jī)與錄音,去河邊找鬼菠发。 笑死王滤,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的滓鸠。 我是一名探鬼主播雁乡,決...
    沈念sama閱讀 39,159評(píng)論 3 411
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼糜俗!你這毒婦竟也來(lái)了蔗怠?” 一聲冷哼從身側(cè)響起墩弯,我...
    開(kāi)封第一講書(shū)人閱讀 37,917評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎寞射,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體锌钮,經(jīng)...
    沈念sama閱讀 44,360評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡桥温,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了梁丘。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片侵浸。...
    茶點(diǎn)故事閱讀 38,814評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖氛谜,靈堂內(nèi)的尸體忽然破棺而出掏觉,到底是詐尸還是另有隱情,我是刑警寧澤值漫,帶...
    沈念sama閱讀 34,509評(píng)論 4 334
  • 正文 年R本政府宣布澳腹,位于F島的核電站,受9級(jí)特大地震影響杨何,放射性物質(zhì)發(fā)生泄漏酱塔。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評(píng)論 3 317
  • 文/蒙蒙 一危虱、第九天 我趴在偏房一處隱蔽的房頂上張望羊娃。 院中可真熱鬧,春花似錦埃跷、人聲如沸蕊玷。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)垃帅。三九已至,卻和暖如春缅糟,著一層夾襖步出監(jiān)牢的瞬間挺智,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,123評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工窗宦, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留赦颇,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,641評(píng)論 2 362
  • 正文 我出身青樓赴涵,卻偏偏與公主長(zhǎng)得像媒怯,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子髓窜,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開(kāi)發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見(jiàn)模式的工具(例如配置管理扇苞,服務(wù)發(fā)現(xiàn)欺殿,斷路器,智...
    卡卡羅2017閱讀 134,639評(píng)論 18 139
  • 互聯(lián)網(wǎng)的飛速發(fā)展和熱門(mén)讓不是互聯(lián)網(wǎng)行業(yè)的人和非計(jì)算機(jī)相關(guān)專(zhuān)業(yè)的同學(xué)也對(duì)互聯(lián)網(wǎng)行業(yè)充滿(mǎn)了憧憬和渴望,另外更多的是擔(dān)心...
    甜菜君呀閱讀 703評(píng)論 0 3
  • 這篇文章定踱,叫文章算是抬舉了自己棍潘,是2011年暑假寫(xiě)的,隨后發(fā)布到了人人網(wǎng)崖媚。曾一度癡迷的人人網(wǎng)如今遍布著廣告鏈...
    愛(ài)上lovewarrior閱讀 664評(píng)論 0 1
  • 姓名:張穎 公司:揚(yáng)州市方圓建筑工程有限公司 【日精進(jìn)打卡第006天】 【知~學(xué)習(xí)】 《六項(xiàng)精進(jìn)》3遍共23遍 《...
  • 本書(shū)作者Scalers堅(jiān)持協(xié)作1000天亦歉,然后有發(fā)起了一個(gè)1000天持續(xù)行動(dòng)計(jì)劃。很牛逼吧畅哑。他在書(shū)中講述了一些感受...
    kafkaliu閱讀 212評(píng)論 1 3