首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

Spring 事务管理 <tx:method/> 相干的设置

2013-07-11 
Spring事务管理tx:method/ 有关的设置来源:http://blog.sina.com.cn/s/blog_4a40057401000865.html?tx:

Spring 事务管理 <tx:method/> 有关的设置

来源:

http://blog.sina.com.cn/s/blog_4a40057401000865.html

?

<tx:method/> 有关的设置
??
??? <tx:advice id="defaultTxAdvice">
??????? <tx:attributes>
??????????? <tx:method name="get*" read-only="true"/>
??????????? <tx:method name="*"/>
??????? </tx:attributes>
??? </tx:advice>
9.5.5. <tx:advice/> 有关的设置

这一节里将描述通过 <tx:advice/> 标签来指定不同的事务性设置。默认的 <tx:advice/> 设置如下:

??? 事务传播设置是 REQUIRED

??? 隔离级别是 DEFAULT

??? 事务是 读/写

??? 事务超时默认是依赖于事务系统的,或者事务超时没有被支持。

??? 任何 RuntimeException 将触发事务回滚,但是任何 checked Exception 将不触发事务回滚

这些默认的设置当然也是可以被改变的。 <tx:advice/> 和 <tx:attributes/> 标签里的 <tx:method/> 各种属性设置总结如下:

?


Spring   事务管理    <tx:method/> 相干的设置
?

热点排行