package eu.dnetlib.repo.manager.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.orm.jpa.JpaTransactionManager; import org.springframework.transaction.PlatformTransactionManager; @Configuration public class JPAConfig { @Bean public PlatformTransactionManager transactionManager() { return new JpaTransactionManager(); } }