Spring中XML配置事务控制

Spring中XML配置事务控制

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

	<!-- 引入外部配置文件 -->
	<context:component-scan base-package="com.atguigu"></context:component-scan>
	<context:property-placeholder location="classpath:c3p0.properties"/>
	<!-- 配置数据源 -->
	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
		<property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
		<property name="driverClass" value="${jdbc.driverClass}"></property>
		<property name="user" value="${jdbc.user}"></property>
		<property name="password" value="${jdbc.password}"></property>
	</bean>
	<!-- 配置JdbcTemplate操作数据库 -->
	<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
		<property name="dataSource" ref="dataSource"></property>
	</bean>
	<!-- 
		配置声明式事务
		1、Spring中提供事务管理器(事务切面),配置这个事务管理器
	 -->
	 <bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
	 	<!-- 控制住数据源 -->
	 	<constructor-arg name="dataSource" ref="dataSource"></constructor-arg>
	 </bean>
	
	 <bean id="bookService" class="com.atguigu.service.bookService"></bean>
	 
	<!-- 基于xml配置的事务,依赖tx名称空间和aop名称空间
			1、spring配置事务管理器
			2、配置出事务方法
			3、告诉spring哪些方法是事务方法(事务切面按照我们的切入点表达式去切入事务方法)
	--> 
	<aop:config>
		<!-- 切入点表达式只是表示事务管理器要切入哪些方法,真正开启事务的方法由tx:method决定 -->
		<aop:pointcut expression="execution(* com.atguigu.service.*.*(..))" id="txPoint"/>
		<!-- 事务建议(事务增强) advice-ref:指向事务管理器的配置-->
		<aop:advisor advice-ref="myAdvice" pointcut-ref="txPoint"/>
	</aop:config>
	
	<!-- 配置事务管理器,指定是配置哪个事务管理器的 -->
	<tx:advice id="myAdvice" transaction-manager="dataSourceTransactionManager">
		<!-- 事务属性 -->
		<tx:attributes>
			<!-- 指明哪些方法是事务方法-->
			<tx:method name="*"/><!-- 所有方法  -->
			<tx:method name="checkout" propagation="REQUIRED" timeout="-1"/><!-- 单个方法,设置超时回滚  -->
			<tx:method name="get*" read-only="true"/><!-- get开头的方法,设置只读属性 -->
		</tx:attributes>
	</tx:advice>
	 
</beans>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值