java - EnableTransactionManagement无法解析为类型2-LMLPHP

我在项目中已经有spring-tx jar了,但遇到了“ EnableTransactionManagement无法解析为类型”的问题。有人可以建议我做错了什么吗?我正在使用Hibernate 4,Eclipse,Spring版本4.3.2。我正在发布问题的快照。
谢谢!

最佳答案

您需要将spring-orm依赖项添加到pom.xml文件中。

<!-- https://mvnrepository.com/artifact/org.springframework/spring-orm -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-orm</artifactId>
            <version>4.3.3.RELEASE</version>
        </dependency>

07-24 09:38
查看更多