PROPAGATION_NESTED
をJPAの@Transactional()
に入れることは可能ですか?postgres?JPA(postgres)を使用したSpringアプリケーションの入れ子トランザクション
org.springframework.transaction.NestedTransactionNotSupportedException:
JpaDialect does not support savepoints - check your JPA provider's capabilities
は、私が試した:
@Bean
public PlatformTransactionManager transactionManager() {
JpaTransactionManager transactionManager = new JpaTransactionManager();
transactionManager.setEntityManagerFactory(entityManagerFactory()
.getObject());
transactionManager.setNestedTransactionAllowed(true);
return transactionManager;
}
をしかしなしの成功と私は取得しています。
どのJPA実装を使用していますか? – Halil