显式声明 JPA 事务管理器,供默认事务使用(transactionManager)。
| 12 | * 显式声明 JPA 事务管理器,供默认事务使用(transactionManager)。 |
| 13 | */ |
| 14 | @Configuration |
| 15 | public class JpaConfig { |
| 16 | |
| 17 | @Bean(name = "transactionManager") |
| 18 | @Primary |
| 19 | public PlatformTransactionManager transactionManager(EntityManagerFactory entityManagerFactory) { |
| 20 | return new JpaTransactionManager(entityManagerFactory); |
| 21 | } |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected