我的同事说我应该将 spring 的 app-context.xml 转换为 java。
为此,我需要有我找不到的@AnnotationDrivenTx-Annotation。
这里有什么解决方法吗?
问候。
我的同事说我应该将 spring 的 app-context.xml 转换为 java。
为此,我需要有我找不到的@AnnotationDrivenTx-Annotation。
这里有什么解决方法吗?
问候。
你的意思是@EnableTransactionManagement
见http://blog.springsource.com/2011/06/10/spring-3-1-m2-configuration-enhancements/
您可以将其作为单独的 jar 从 MavenRepository 下载:
<dependency>
<groupId>org.springframework.javaconfig</groupId>
<artifactId>spring-javaconfig</artifactId>
<version>1.0.0.m3</version>
</dependency>
但它是从 2008 年开始的,似乎不再开发了。这些功能可以在 spring-tx 组件中找到,@EnableTransactionManagement 是查尔斯所说的要走的路。