3

我是基于注释的编程的新手,不知道要为org.springframework.transaction.annotation.Transactional添加到我的 pom.xml 中的 Maven 工件,我用谷歌搜索(比如搜索结果的前 5 页)但找不到什么是我在寻找。我正在使用 spring 3。另外,如果有任何在线教程可以了解更多关于 spring 中的注释。谢谢!!

4

2 回答 2

11

它在spring-tx中。

Spring 文档很好地涵盖了 Spring 。

于 2012-07-28T16:59:50.170 回答
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 回答