Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-11-2019 07:01 AM
This happens when there is a custom isolation level present for a jpa method ( isolation = Isolation.SERIALIZABLE).
@Override
@Transactional(readOnly=false, isolation = Isolation.SERIALIZABLE)
public Lis saveAll(List<Price> prices) {
..
}`
Returning ChaniedTransactionManager for Bean, which could be causing this issue? if so, can I separate Transaction Managers?
Transaction Manager
@Bean(name = "transactionManager")
public PlatformTransactionManager transactionManager(){
return new ChainedTransactionManager(new JpaTransactionManager(entityManagerFactory().getObject()),
new Neo4jTransactionManager(sessionFactory));
}
All the sessions of the conference are now available online