Spring整合之不需要Mybatis的配置文件

把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>

猜你喜欢

转载自blog.csdn.net/Yang975222579/article/details/53218134