<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="obtain*" read-only="true"/>
<tx:method name="load*" read-only="true"/>
<tx:method name="*" />
</tx:attributes>
</tx:advice>
<aop:config proxy-target-class="true">
<aop:pointcut id="serviceOperations" expression="execution(* service.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="serviceOperations"/>
</aop:config>
<tx:method/>的默认配置如下:
事务传播:propagation="REQUIRED"
隔离级别:isolation="DEFAULT" //采用数据库默认的事务隔离级别
事务是读/写
任何RuntimeException将触发事务回滚,任何CheckedException将不触发事务回滚
(* service.*.*(..))含义如下:
第一个 * —通配 任意返回值类型
第二个 * —通配 包service下的任意class
第三个 * —通配 包service下的任意class的任意方法
第四个 .. —通配 方法可以有0个或多个参数
综上:包service下的任意class的具有任意返回值类型、任意数目参数和任意名称的方法
Spring在TransactionDefinition接口中规定了7种类型的事务传播行为,它们规定了事务方法和事务方法发生嵌套调用时事务如何进行传播:
事务传播行为类型
|
说明
|
PROPAGATION_REQUIRED
|
如果当前没有事务,就新建一个事务,如果已经存在一个事务中,加入到这个事务中。这是最常见的选择。
|
PROPAGATION_SUPPORTS
|
支持当前事务,如果当前没有事务,就以非事务方式执行。
|
PROPAGATION_MANDATORY
|
使用当前的事务,如果当前没有事务,就抛出异常。
|
PROPAGATION_REQUIRES_NEW
|
新建事务,如果当前存在事务,把当前事务挂起。
|
PROPAGATION_NOT_SUPPORTED
|
以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。
|
PROPAGATION_NEVER
|
以非事务方式执行,如果当前存在事务,则抛出异常。
|
PROPAGATION_NESTED
|
如果当前存在事务,则在嵌套事务内执行。如果当前没有事务,则执行与PROPAGATION_REQUIRED类似的操作。
|
分享到:
相关推荐
### Spring事务配置详解 #### 一、Spring事务配置概述 Spring框架提供了强大的事务管理功能,支持编程式事务管理和声明式事务管理。其中声明式事务管理是通过AOP(面向切面编程)技术来实现的,它能让我们在不修改...
<description>Spring公共配置文件</description> <!-- mes 的數據庫 --> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass" ...
advice-ref="noTxAdvice" /> </aop:config> <bean id="fooService" class="x.y.service.DefaultFooService" /> <bean id="anotherFooService" class="x.y.service.ddl.DefaultDdlManager" /> <tx:advice ...
第三种方式是使用Spring的`<tx:advice>`和`<tx:method>`元素在XML中直接定义事务规则,这比前两种方式更简洁: ```xml <tx:advice id="txAdvice"> <tx:attributes> <tx:method name="find*" propagation=...
<tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="add*" propagation="REQUIRED"/> <tx:method name="delete*" propagation="REQUIRED"/> <tx:...
<context:annotation-config/> <!-- 扫描包 --> <context:component-scan base-package="com.org"/> <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver...
通过`<tx:advice>`和`<aop:config>`标签,可以定义事务切面并应用到特定的bean或方法上。 ```xml <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="create...
在Spring的配置文件中,使用`<tx:advice>`和`<aop:config>`元素来定义事务策略和切面。 ```xml <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="*" ...
<context:annotation-config/> <context:component-scan base-package="com.org.*" /> <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property...
<!--配置连接池--> <bean id="dataSource" class=... <aop:config> <aop:pointcut id="pointcut" expression="execution(* com.itheima.service.impl.*.*(..))"/> <aop:advisor advice-ref="advice" pointcut-ref=
在 XML 配置文件中,我们可以使用 `<tx:advice>` 元素来定义事务通知,用于指定事务属性。例如: ```xml <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name=...
<tx:advice id="txAdvice" transaction-manager="transactionManager"> <!-- 定义事务传播属性 --> <tx:attributes> <tx:method name="insert*" propagation="REQUIRED" /> <tx:method name="update*" ...
<tx:advice id="transactionAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="add*" propagation="REQUIRED"/> <tx:method name="update*" propagation="REQUIRED"/> <tx:...
1. XML配置:在`<tx:advice>`元素中定义事务行为,然后通过`<aop:config>`或`<aop:aspect>`将事务行为应用到特定的bean或方法上。例如: ```xml <tx:advice id="transactionAdvice" transaction-manager=...
接着,使用`<tx:advice>`和`<tx:attributes>`定义事务策略,例如,将所有以`insert*`、`update*`和`delete*`开头的方法设置为`REQUIRED`传播属性,意味着这些方法必须在事务中执行。最后,使用`<aop:config>`配置...
Spring提供`<tx:annotation-driven>`标签,基于注解进行事务管理,方便快捷: ```xml <aop:config> <aop:advisor advice-ref="transactionAdvice" pointcut="execution(* com.bluesky.spring.service.*.*(..))"/> ...
在 Spring 2.0 中,可以使用 `<tx:advice>` 和 `<aop:config>` 元素来定义事务通知和切面。具体配置如下: ```xml <bean id="transactionManager" class="org.springframework.jdbc.datasource....
<aop:config> <aop:pointcut id="serviceOperation" expression="execution(* *..servi1ce*..*(..))"/> <aop:advisor pointcut-ref="serviceOperation" advice-ref="txAdvice"/> </aop:config> <!-- 通知配置...