<props>
<prop key="process*">PROPAGATION_REQUIRED, +FrameworkdemoServiceException</prop>
<prop key="*">PROPAGATION_REQUIRED,readOnly</prop>
</props>
我们还指定,当方法抛出FrameworkdemoServiceException类型的异常时,addLineItem就总是回滚事务。这就达到了另一个粒度级别:在异常场景中,我们的控制可以精细到TX的具体结束方式。前缀符号“-”指定回滚TX,而前缀符号“+”指定提交TX
。("-"时,回滚,“+”,不回滚)
事务是否会滚要看每个method的配置!
如果一个事务为+,则它的失败对别的service没有影响!
如果为-,则它的失败对别人有影响!
还要看整个method的属性~!
<bean id="propanagationTestAccountService" parent="transactionProxyTemplate">
<property name="target">
<bean class="com.suzsoft.demo.account.service.PropagationTestAccountServiceImpl" autowire="byName"/>
</property>
<property name="transactionAttributes">
<props>
<prop key="new*">PROPAGATION_REQUIRED,+FrameworkdemoServiceException</prop>
<prop key="edit*">PROPAGATION_REQUIRED</prop>
<bean id="loginService" parent="transactionProxyTemplate">
<property name="target">
<bean class="com.suzsoft.demo.account.service.LoginServiceImpl" autowire="byName"/>
</property>
<property name="transactionAttributes">
<props>
<prop key="login*">PROPAGATION_REQUIRED,+FrameworkdemoServiceException</prop>
<prop key="*">PROPAGATION_REQUIRED,readOnly</prop>
</props>
</pr
方法中的事务才不回滚
key属性确定代理应该给哪个方法增加事务行为。这样的属性最重要的部份是传播行为。有以下选项可供使用:
PROPAGATION_REQUIRED--支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。
PROPAGATION_SUPPORTS--支持当前事务,如果当前没有事务,就以非事务方式执行。
PROPAGATION_MANDATORY--支持当前事务,如果当前没有事务,就抛出异常。
PROPAGATION_REQUIRES_NEW--新建事务,如果当前存在事务,把当前事务挂起。
PROPAGATION_NOT_SUPPORTED--以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。
PROPAGATION_NEVER--以非事务方式执行,如果当前存在事务,则抛出异常。
PROPAGATION_NESTED--如果当前存在事务,则在嵌套事务内执行。如果当前没有事务,则进行与PROPAGATION_REQUIRED类似的操作。
回滚事务中,spring 似乎把bean存到缓存中,等到事务全部处理完,没有会滚,才把bean存入数据库,如果这期间bean有变化,存入的是变化后的bean ,如
Account account1 = new Account();
account1.setLoginId("prowww1");
propanagationTestAccountService.newAccount(account1);
account1.setLoginId("acodddddddddw1");
最后存入数据库的bean longId 是后面的数据:("acodddddddddw1");
posted on 2006-08-04 11:36
R.Zeus 阅读(420)
评论(0) 编辑 收藏 所属分类:
SPRING