Spring整合之不需要Mybatis的配置檔案
阿新 • • 發佈:2019-01-03
把User,mapper.xml的配置檔案也配置在SpringIOC的容器裡面··
<?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:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.1.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.1.xsd"> <!-- 配置資料來源 --> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property name="url" value="jdbc:mysql://127.0.0.1:3306/webservice"></property> <property name="username" value="root"></property> <property name="password" value="sorry"></property> </bean> <!-- 1.配置事物管理 --> <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 2.配置事物的通知 --> <tx:advice id="txadvice" transaction-manager="txManager"> <tx:attributes> <!-- 配置哪些方法使用什麼樣的事物,配置事物的傳播特性 --> <tx:method name="add" propagation="REQUIRED" /> <tx:method name="update" propagation="REQUIRED" /> <tx:method name="delete" propagation="REQUIRED" /> <tx:method name="remove*" propagation="REQUIRED" /> <tx:method name="insert" propagation="REQUIRED" /> <tx:method name="get" read-only="true" /> <tx:method name="*" propagation="REQUIRED" /> </tx:attributes> </tx:advice> <!-- 3.配置事物的切面 --> <aop:config> <aop:pointcut expression="execution(* cn.xst.dao.impl.*.*(..))" id="pointcut" /> <aop:advisor advice-ref="txadvice" pointcut-ref="pointcut" /> </aop:config> <!-- 配置mybatis的SqlSessionFactory --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"></property> <!-- mybatis的對映檔案檔案 --> <property name="mapperLocations" value="classpath:cn/xst/vo/*.mapper.xml"></property> </bean> <!-- 配置sqlSessionTemplate --> <bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate"> <constructor-arg index="0" ref="sqlSessionFactory"></constructor-arg> </bean> <!-- dao裡面需要注入sqlSession --> <bean id="userDao" class="cn.xst.dao.impl.UserDaoImpl"> <property name="sqlSession" ref="sqlSessionTemplate"></property> </bean> </beans>