首页 > 代码库 > Spring事务的开启方式
Spring事务的开启方式
1、通过注解方式@Transactional
@Transactional(rollbackForClassName = { "Exception", "RuntimeException" }) public void save(PersonEntity entity) { personDao.save(entity); }
2、通过切片方式
<!-- 配置事务传播特性 --> <tx:advice id="advice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="get*" read-only="true" /> <tx:method name="*" rollback-for="Exception" /> </tx:attributes> </tx:advice> <!-- 配置参与事务的类 --> <aop:config> <aop:pointcut id="all" expression="execution(* com.zhi.service.*.*(..))" /> <aop:advisor pointcut-ref="all" advice-ref="advice" /> </aop:config>
Spring事务的开启方式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。