我是基于注释的编程的新手,不知道要为org.springframework.transaction.annotation.Transactional添加到我的 pom.xml 中的 Maven 工件,我用谷歌搜索(比如搜索结果的前 5 页)但找不到什么是我在寻找。我正在使用 spring 3。另外,如果有任何在线教程可以了解更多关于 spring 中的注释。谢谢!!
问问题
9617 次
2 回答
0
前一个答案的特例。如果你使用mybatis和maven,
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.1.1</version>
</dependency>
将为您导入 spring-tx 包:
[INFO] +- org.mybatis:mybatis:jar:3.1.1:compile
[INFO] +- org.mybatis:mybatis-spring:jar:1.1.1:compile
[INFO] | +- org.springframework:spring-tx:jar:3.1.1.RELEASE:compile
[INFO] | \- org.springframework:spring-jdbc:jar:3.1.1.RELEASE:compile
于 2016-08-10T05:34:17.677 回答