当前位置:Gxlcms > 数据库问题 > 深入Spring数据库事务管理(一)

深入Spring数据库事务管理(一)

时间:2021-07-01 10:21:17 帮助过:19人阅读

="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" 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.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 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <!--启用扫描机制,并指定扫描对应的包--> <context:annotation-config /> <context:component-scan base-package="com.ssm.chapter13.*" /> <!-- 事务管理器配置数据源事务,注意是因为使用MyBatis才使用这个数据源 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <!-- 使用注解定义事务 --> <tx:annotation-driven transaction-manager="transactionManager" /> </beans>

使用注解方式:使用@EnableTransactionManagement事务驱动管理器


声明式事务

Transactional 的配置项

技术图片

注意,使用声明式事务需要配置注解驱动,只要在代码清单中加入如下配置就可以使用@Transactional配置事务了:

<tx:annotation-driven transaction-manager="transactionManager"/>

使用XML方式

其实差不多,有空再写。

深入Spring数据库事务管理(一)

标签:nal   mybatis   contex   ssm   title   img   package   nsa   padding   

人气教程排行