SSM整合

springmvc + spring + mybatis 配置整合

eclipse里創(chuàng)建一個(gè)web project

導(dǎo)入整合需要的jar包

...

在WEB-INF/web.xml中以xml配置方式引入spring框架

<!-- 在項(xiàng)目中導(dǎo)入spring框架 start-->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring-*.xml</param-value>
</context-param>
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- 在項(xiàng)目中導(dǎo)入spring框架 end-->

在WEB-INF/web.xml中以xml配置方式引入springMVC框架

<!-- 在項(xiàng)目中導(dǎo)入springmvc框架 start-->
<servlet>
    <servlet-name>springmvcservlet</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>
</servlet>

<servlet-mapping>
    <servlet-name>springmvcservlet</servlet-name>
    <url-pattern>*.a</url-pattern>
</servlet-mapping>
<!-- 在項(xiàng)目中導(dǎo)入springmvc框架 end-->

創(chuàng)建一個(gè)源碼目錄(config)專門用來存放所有配置文件

...

創(chuàng)建springmvc的配置文件springmvc.xml

  1. 在config目錄下創(chuàng)建xml文件荔仁,名字叫springmvc.xml
  2. 在springmvc.xml文件中加入,根標(biāo)簽beans同時(shí)加入命名空間
<?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:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-4.3.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd 
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.3.xsd ">
</beans>

  1. 在springmvc.xml文件的beans標(biāo)簽下加入子標(biāo)簽bean煞赢,作用是所有映射方法返回json時(shí)偷溺,中文不亂碼,在Controller中的@RequestMapping中添加屬性:produces="application/json;charset=utf-8"返回時(shí)不會(huì)亂碼。
    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">    
        <property name="messageConverters">    
            <list>    
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">    
                <property name="supportedMediaTypes">    
                    <list>
                        <value>text/plain;charset=UTF-8</value>
                        <value>text/html;charset=UTF-8</value>
                    </list>
                </property>
            </bean>
            </list>
        </property>
    </bean>

  1. 在springmvc.xml文件的beans標(biāo)簽下加入子標(biāo)簽context:component-scan窗宇,作用通過指定的包措伐,和包里被注解@Controller的類,來確定哪些是controller
<!-- 這里讓掃描controller军俊,指定controller的包  -->
<context:component-scan base-package="com.xx.ssmdemo.phone.controller"></context:component-scan>
<context:component-scan base-package="com.xx.ssmdemo.pc.controller"></context:component-scan>

  1. 在springmvc.xml文件的beans標(biāo)簽下加入子標(biāo)簽mvc:annotation-driven侥加,作用是啟動(dòng)跟注解相關(guān)的代理(如果不做這步,那么上面第3步是不起作用的)粪躬,解決跨域問題時(shí)(@CrossOrigin(origins={""},maxAge=3600)//跨域訪問担败,代表任意域名都能訪問我)也需要添加此配置
<mvc:annotation-driven />

  1. 在springmvc.xml文件的beans標(biāo)簽下加入子標(biāo)簽bean,作用是告訴springmvc框架镰官,視圖文件所在的路徑提前,和擴(kuò)展名
    <!-- 視圖解析器,解析jsp解析 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!-- 配置視圖文件所在路徑 -->
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <!-- 配置視圖文件的擴(kuò)展名 -->
        <property name="suffix" value=".jsp"/>
    </bean>

創(chuàng)建連接數(shù)據(jù)庫的參數(shù)所在的屬性文件泳唠,起名為db.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/elm?characterEncoding=utf-8
jdbc.username=root
jdbc.password=123456

創(chuàng)建mybatis的配置文件狈网,起名為mybatis.xml

<!--
由于數(shù)據(jù)庫連接部分,由spring框架的ioc進(jìn)行管理笨腥,所以在這個(gè)配置文件跟數(shù)據(jù)庫連接相關(guān)的配置省略
只剩下拓哺,聲明程序里用到的mapper.xml的配置,即下面的mappers標(biāo)簽
-->
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <mappers>
        <mapper resource="com/xx/ssmdemo/pc/mapper/SystemMapper.xml"/>
        <mapper resource="com/xx/ssmdemo/pc/mapper/UserMapper.xml"/>
    </mappers>
</configuration>

創(chuàng)建跟spring框架集成一起的數(shù)據(jù)庫連接配置文件脖母,起名為spring-db.xml

  1. 在config目錄下創(chuàng)建xml文件士鸥,名字叫spring-db.xml
  2. 在spring-db.xml文件中加入,根標(biāo)簽beans同時(shí)加入命名空間
<?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: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-4.3.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd 
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.3.xsd 
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop-4.3.xsd 
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx-4.3.xsd ">
</beans>

  1. 在spring-db.xml文件的beans標(biāo)簽下谆级,加入子標(biāo)簽context:component-scan烤礁,掃描service
<!-- 項(xiàng)目把controller和service分開掃描,springmvc框架只掃描controller哨苛,spring框架只掃描service -->
<!-- 這里讓掃描service鸽凶,指定service的包  -->
<context:component-scan base-package="com.xx.ssmdemo.phone.service"></context:component-scan>
<context:component-scan base-package="com.xx.ssmdemo.pc.service"></context:component-scan>

  1. 在在spring-db.xml文件的beans標(biāo)簽下,加入子標(biāo)簽context:property-placeholder建峭,作用是導(dǎo)入我們?cè)赿b.properties中配置的數(shù)據(jù)庫連接參數(shù)
<!-- 加載db.properties文件中的內(nèi)容 -->
<context:property-placeholder location="classpath:db.properties"/>

  1. 加入子標(biāo)簽bean玻侥,引入數(shù)據(jù)庫連接池dbcp
<!-- 配置dbcp數(shù)據(jù)源 -->
<!-- value屬性里在“${}”里面的文本,應(yīng)該和db.properties文件中等號(hào)左邊的文本對(duì)應(yīng) -->
<!-- id屬性可以自定亿蒸,class屬性的值必須如下凑兰,property子標(biāo)簽的屬性name的值必須如下 -->
<bean id="mydataSource" class="org.apache.commons.dbcp.BasicDataSource">
    <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="maxActive" value="30"/>
    <property name="maxIdle" value="5"/>
</bean>

  1. 加入子標(biāo)簽bean,實(shí)例化mybatis的session工廠(mybatis里的session就是connection)
<!-- sqlSessionFactory -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!-- 數(shù)據(jù)庫連接池 -->
        <property name="dataSource" ref="mydataSource" />
        <!-- 加載mybatis的全局配置文件 -->
        <property name="configLocation" value="classpath:mybatis.xml" />
    </bean>

  1. 加入子標(biāo)簽bean边锁,實(shí)例化mapper掃描器姑食,作用是把被mybatis管理的dao的實(shí)現(xiàn)類納入spring的ioc容器,以便注入注解能找到
<!-- mapper掃描器-->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <!-- 掃描包路徑茅坛,如果需要掃描多個(gè)包音半,中間使用半角逗號(hào)隔開 -->
        <property name="basePackage" value="com.xx.ssmdemo.pc.mapper"></property>
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
    </bean>

創(chuàng)建spring事務(wù)管理的配置文件则拷,起名為spring-transaction.xml

  1. 在config目錄下創(chuàng)建xml文件,名字叫spring-transaction.xml
  2. 在spring-transaction.xml文件中加入曹鸠,根標(biāo)簽beans同時(shí)加入命名空間
<?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: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-4.0.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd 
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.0.xsd 
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop-4.0.xsd 
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx-4.0.xsd ">
<beans>

  1. 創(chuàng)建子標(biāo)簽bean煌茬,作用是整個(gè)項(xiàng)目中管理事務(wù)的類實(shí)例,事務(wù)管理器
<!-- 事務(wù)管理器   對(duì)mybatis操作數(shù)據(jù)庫進(jìn)行事務(wù)控制彻桃,spring使用jdbc的事務(wù)控制類 -->
<!-- id屬性值可以隨便起 -->
<!-- id屬性如下固定 -->
<!-- 子標(biāo)簽property的name屬性固定不變坛善,ref屬性的值是上一個(gè)spring-db.xml文件中dbcp數(shù)據(jù)源bean標(biāo)簽的id值 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <!-- 數(shù)據(jù)源dataSource在spring-db.xml中已經(jīng)配置-->
        <property name="dataSource" ref="mydataSource" />
    </bean>

  1. 創(chuàng)建子標(biāo)簽tx:advice,配置springaop管理事務(wù)時(shí)的通知邻眷,同時(shí)指定事務(wù)的傳播行為
<!-- 通知 -->
<!-- id屬性隨便起 -->
<!-- transaction-manager屬性的值眠屎,是上面事務(wù)管理器的bean標(biāo)簽的id屬性的值 -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <!-- 傳播行為 -->
            <!--
            PROPAGATION_REQUIRED - 支持當(dāng)前事務(wù),如果當(dāng)前沒有事務(wù)肆饶,就新建一個(gè)事務(wù)改衩。這是最常見的選擇。 
            PROPAGATION_SUPPORTS - 支持當(dāng)前事務(wù)抖拴,如果當(dāng)前沒有事務(wù)燎字,就以非事務(wù)方式執(zhí)行腥椒。 
            PROPAGATION_MANDATORY - 支持當(dāng)前事務(wù)阿宅,如果當(dāng)前沒有事務(wù),就拋出異常笼蛛。 
            PROPAGATION_REQUIRES_NEW - 新建事務(wù)洒放,如果當(dāng)前存在事務(wù),把當(dāng)前事務(wù)掛起滨砍。 
            PROPAGATION_NOT_SUPPORTED - 以非事務(wù)方式執(zhí)行操作往湿,如果當(dāng)前存在事務(wù),就把當(dāng)前事務(wù)掛起惋戏。 
            PROPAGATION_NEVER - 以非事務(wù)方式執(zhí)行领追,如果當(dāng)前存在事務(wù),則拋出異常响逢。

            isolation屬性 - [隔離級(jí)別]

            https://www.cnblogs.com/yangy608/archive/2011/06/29/2093478.html

            read-only只讀
            read-only只讀事務(wù)配置是為了避免多次查詢結(jié)果不一致绒窑,即在進(jìn)行數(shù)據(jù)庫查詢之前,已經(jīng)查詢的結(jié)果不能有變動(dòng)
            -->
            <!--
            tx:method作用是舔亭,指定aop:advisor標(biāo)簽的屬性pointcut找到的類里些膨,哪個(gè)方法加事務(wù),方法名字采用下面通配形式
            tx:method子標(biāo)簽的name屬性的值钦铺,采用通配符形式订雾,*代表任意字符
            下面的name屬性值的配置的含義是:以四個(gè)單詞開頭的方法都被加入事務(wù)
            -->
            <tx:method name="save*" propagation="REQUIRED"/>
            <tx:method name="delete*" propagation="REQUIRED"/>
            <tx:method name="insert*" propagation="REQUIRED"/>
            <tx:method name="update*" propagation="REQUIRED"/>
            <!-- 
            <tx:method name="find*" propagation="SUPPORTS" read-only="true"/>
            <tx:method name="get*" propagation="SUPPORTS" read-only="true"/>
            <tx:method name="select*" propagation="SUPPORTS" read-only="true"/>
             -->
        </tx:attributes>
    </tx:advice>

  1. 引入子標(biāo)簽aop:config,創(chuàng)建sop方式管理事務(wù)的配置
    <aop:config>
    <!--
    第一個(gè) * - 通配 返回值類型
    第二個(gè) * - 通配包c(diǎn)om.xx.ssmdemo.pc.service.impl下的class
    第三個(gè) * - 通配包c(diǎn)om.xx.ssmdemo.pc.service.impl下的class的方法
    第四個(gè) .. - 通配 方法可以有0個(gè)或多個(gè)參數(shù)
    -->
    <!-- advice-ref的值是上面tx:advice標(biāo)簽的id屬性的值 -->
        <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.xx.ssmdemo.pc.service.impl.*.*(..))"/>
    </aop:config>

springmvc + spring + mybatis 程序開發(fā)

1.分包

com.xx.項(xiàng)目名.po
com.xx.項(xiàng)目名.mapper
com.xx.項(xiàng)目名.service
com.xx.項(xiàng)目名.controller

2.對(duì)應(yīng)數(shù)據(jù)庫的表矛洞,把mybatis的po洼哎、mapper接口、mapper.xml實(shí)現(xiàn)文件創(chuàng)建

  • 在po包下創(chuàng)建表對(duì)應(yīng)的PO類

  • 在mapper包下創(chuàng)建mapper接口和mapper.xml即接口的實(shí)現(xiàn)文件

  • 在service包下,創(chuàng)建服務(wù)類接口噩峦,和接口實(shí)現(xiàn)類

  • 在controller包里窑邦,創(chuàng)建控制類

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市壕探,隨后出現(xiàn)的幾起案子冈钦,更是在濱河造成了極大的恐慌,老刑警劉巖李请,帶你破解...
    沈念sama閱讀 212,718評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件瞧筛,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡导盅,警方通過查閱死者的電腦和手機(jī)较幌,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來白翻,“玉大人乍炉,你說我怎么就攤上這事÷蒜桑” “怎么了岛琼?”我有些...
    開封第一講書人閱讀 158,207評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)巢株。 經(jīng)常有香客問我槐瑞,道長(zhǎng),這世上最難降的妖魔是什么阁苞? 我笑而不...
    開封第一講書人閱讀 56,755評(píng)論 1 284
  • 正文 為了忘掉前任困檩,我火速辦了婚禮,結(jié)果婚禮上那槽,老公的妹妹穿的比我還像新娘悼沿。我一直安慰自己,他們只是感情好骚灸,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評(píng)論 6 386
  • 文/花漫 我一把揭開白布糟趾。 她就那樣靜靜地躺著,像睡著了一般逢唤。 火紅的嫁衣襯著肌膚如雪拉讯。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,050評(píng)論 1 291
  • 那天鳖藕,我揣著相機(jī)與錄音魔慷,去河邊找鬼。 笑死著恩,一個(gè)胖子當(dāng)著我的面吹牛院尔,可吹牛的內(nèi)容都是我干的蜻展。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼邀摆,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼纵顾!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起栋盹,我...
    開封第一講書人閱讀 37,882評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤施逾,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后例获,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體汉额,經(jīng)...
    沈念sama閱讀 44,330評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評(píng)論 2 327
  • 正文 我和宋清朗相戀三年榨汤,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了蠕搜。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,789評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡收壕,死狀恐怖妓灌,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情蜜宪,我是刑警寧澤虫埂,帶...
    沈念sama閱讀 34,477評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站端壳,受9級(jí)特大地震影響告丢,放射性物質(zhì)發(fā)生泄漏枪蘑。R本人自食惡果不足惜损谦,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評(píng)論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望岳颇。 院中可真熱鬧照捡,春花似錦、人聲如沸话侧。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽瞻鹏。三九已至悲立,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間新博,已是汗流浹背薪夕。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評(píng)論 1 267
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留赫悄,地道東北人原献。 一個(gè)月前我還...
    沈念sama閱讀 46,598評(píng)論 2 362
  • 正文 我出身青樓馏慨,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親姑隅。 傳聞我的和親對(duì)象是個(gè)殘疾皇子写隶,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評(píng)論 2 351

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