特牛生活网

Spring事务_springboot connection.setautocommit(true)-CSDN博客

网友收藏
文章浏览阅读330次。Spring事务分编程式事务(setAutoCommit(false)-->commit/rollback)和注解式事务(启动类加@EnableTransactionManagement--->方法/接口加@Transactionl)@Transactional注解:1、未交给Spring管理2、方法不是public修饰3、A调B方法,而只在B方法加了@Transactional,因为事务的底层是AOP,扫描到注解,才会启动动态代理做切面4、try catch捕捉了异常/吞并异常,但未抛出。........_springboot connection.setautocommit(true)