首页 > 代码库 > springboot的問題
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的問題
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。