我使用this教程开发了一个spring数据jpa程序。然后通过添加一个新的类/方法来测试spring的@Transactional注释来修改它。
@Transactional
public void txnMethod() {
repository.save(new Customer("First Customer",""));
repository.save(new Customer("Second Customer",""));
...
}
以上代码已正确编译和执行。 然后我修改了代码以明确设置传播模式,如下所示,但这给了我一个编译错误 - “注释类型Transactional的属性传播未定义
@Transactional(propagation=Propagation.REQUIRED)
public void txnMethod() {
repository.save(new Customer("First Customer",""));
repository.save(new Customer("Second Customer",""));
...
}
如何明确指定传播模式? 以下是build.gradle中的依赖项。我使用的是春季启动版本1.2.1.RELEASE
dependencies {
compile("org.springframework.boot:spring-boot-starter-jdbc")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.springframework.boot:spring-boot-starter-web")
compile ("org.springframework.boot:spring-boot-starter-tomcat")
compile("com.h2database:h2")
providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
}
答案 0 :(得分:10)
使用对Spring Data具有直接或传递依赖性的应用程序时,编译时类路径上有两个名为@Transactional
的类。其中一个是javax.persistence.Transactional
,另一个是org.springframework.transaction.annotation.Transactional
。它是后来的类,必须用于Spring的声明式事务管理。枚举Propagation
也仅由后者支持。前者支持名为TxType
的不同枚举。
请确保您要应用的@Transactional
属于org.springframework.transaction.annotation.Transactional
类型,因为在用户键入javax.persistence.Transactional
时,IDE有时会为@Transactional
添加导入。然后,尝试将Propagation
添加到注释失败,因为javax.persistence.Transactional
不支持此枚举。