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
- 在config目錄下創(chuàng)建xml文件荔仁,名字叫springmvc.xml
- 在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>
- 在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>
- 在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>
- 在springmvc.xml文件的beans標(biāo)簽下加入子標(biāo)簽mvc:annotation-driven侥加,作用是啟動(dòng)跟注解相關(guān)的代理(如果不做這步,那么上面第3步是不起作用的)粪躬,解決跨域問題時(shí)(@CrossOrigin(origins={""},maxAge=3600)//跨域訪問担败,代表任意域名都能訪問我)也需要添加此配置
<mvc:annotation-driven />
- 在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
- 在config目錄下創(chuàng)建xml文件士鸥,名字叫spring-db.xml
- 在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>
- 在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>
- 在在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"/>
- 加入子標(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>
- 加入子標(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>
- 加入子標(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
- 在config目錄下創(chuàng)建xml文件,名字叫spring-transaction.xml
- 在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>
- 創(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>
- 創(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>
- 引入子標(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)建控制類