码迷,mamicode.com
首页 > 编程语言 > 详细

spring整合mybatis配置 事务管理

时间:2018-12-27 22:57:35      阅读:399      评论:0      收藏:0      [点我收藏+]

标签:tis   manage   html   1.0   服务端   www.   jdbc   ann   cti   

分布式的服务端配置

applicationContext-tx.xml

开启注解在service层

 

<?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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">


<!-- 事务管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>

<!-- 开启事务控制的注解支持 -->
<tx:annotation-driven transaction-manager="transactionManager"/>

</beans>

对需要添加事务的方法或者类添加 @Transactional 注解

https://www.cnblogs.com/soundcode/p/6478277.html

 

spring整合mybatis配置 事务管理

标签:tis   manage   html   1.0   服务端   www.   jdbc   ann   cti   

原文地址:https://www.cnblogs.com/draymond/p/10187241.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!