springboot事务问题
来源:13-6 service的迁移
慕沐8221787
2020-05-31
看老师配置了事务管理的配置类,springboot启动时,没有默认启动事务吗?
写回答
1回答
-
翔仔
2020-06-01
同学好,可以看看这个配置
package com.imooc.o2o.config.service; import javax.sql.DataSource; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.jdbc.datasource.DataSourceTransactionManager; import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.annotation.EnableTransactionManagement; import org.springframework.transaction.annotation.TransactionManagementConfigurer; /** * 对标spring-service里面的transactionManager * 继承TransactionManagementConfigurer是因为开启annotation-driven * * @author xiangze * */ @Configuration // 首先使用注解 @EnableTransactionManagement 开启事务支持后 // 在Service方法上添加注解 @Transactional 便可 @EnableTransactionManagement public class TransactionManagementConfiguration implements TransactionManagementConfigurer { @Autowired // 注入DataSourceConfiguration里边的dataSource,通过createDataSource()获取 private DataSource dataSource; @Override /** * 关于事务管理,需要返回PlatformTransactionManager的实现 */ public PlatformTransactionManager annotationDrivenTransactionManager() { return new DataSourceTransactionManager(dataSource); } }
@EnableTransactionManagement就是启动了呀
012020-06-02
相似问题