我可能遗漏了一些关于如何使用JPA的基本信息,但是当我尝试从DAO执行CRUD操作时,我得到javax.persistence.TransactionRequiredException: No transactional EntityManager available
,特别是改变数据库的操作。我正在使用Spring Boot。
这是一个玩具示例,它提供了我的代码的设置,因为您会注意到从EntityManager调用的只是轮询信息工作的所有方法,但是一旦我尝试以某种方式改变数据库,我就会遇到问题:
@Repository
public class PersonJpa{
@PersistenceContext
private EntityManager em;
public void foo() {
Long id = 500l;
Person p = new Person(id, "lastName", "firstName");
// all of these calls work:
em.find(Person.class, id);
em.contains(p);
em.getReference(Person.class, id);
// this call causes exception:
em.remove(p);
}
}
这是我的Spring Boot配置:
@SpringBootApplication
@EnableTransactionManagement
@ComponentScan(basePackages = {Info.BASE_PACKAGE})
@EntityScan(basePackages = {Info.BASE_PACKAGE})
public class PersonServiceConfiguration {
public static void main(String[] args) {
SpringApplication.run(PersonServiceConfiguration.class, args);
}
}
这是我的application.yml
文件:
spring:
profiles.active: default
---
spring:
profiles: default
spring.datasource:
driverClassName: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/db?autoReconnect=true
username: user
password: pwd
spring.jpa.show-sql: false
spring.jpa.database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
答案 0 :(得分:2)
将@Transactional
添加到执行CRUD的类中,并确保调用CRUD类的类具有要加入的事务。