springboot的問題
Posted 无敌的小小哒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot的問題相关的知识,希望对你有一定的参考价值。
一、事务
PlatformTransactionManager 如果你添加的是 spring-boot-starter-jdbc jar包,框架会默认注入 DataSourceTransactionManager 实例。如果你添加的是 spring-boot-starter-data-jpa jar包,框架会默认注入 JpaTransactionManager 实例。
@EnableTransactionManagement
@SpringBootApplication
@ComponentScan
public class signRestApplication extends SpringBootServletInitializer{}
@EnableTransactionManagement (等同于xml配置文件中的 <tx:annotation-driven />)
运行signRestApplication 时启动事务管理,在service上加上@Transactional实现事务管理
以上是关于springboot的問題的主要内容,如果未能解决你的问题,请参考以下文章