Spring Boot事务配置

2019-05-11  本文已影响0人  Xiewb

配置类贴上支持事务的注解

@EnableTransactionManagement

配置事务管理器

方式一:
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
方式二:
@Bean
public DataSourceTransactionManager transactionManager(DataSource dataSource){
    DataSourceTransactionManager tx = new DataSourceTransactionManager();
    tx.setDataSource(dataSource);
    return tx;
}
上一篇 下一篇

猜你喜欢

热点阅读