EnableTransactionManagement 无法解析为类型
EnableTransactionManagement cannot be resolved to a type
package com.shaun.spring.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan("com.shaun.spring")
@EnableTransactionManagement
public class ApplicationContextConfig {
// @Bean configurations go here...
}
我对@EnableTransactionManagement 有疑问
发生的以下错误 is:EnableTransactionManagement 无法解析为类型。
我的 pom.xml 中有以下依赖项:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
我也尝试过使用以下导入:
import org.springframework.transaction.annotation.EnableTransactionManagement;
这给了我以下错误:
The import org.springframework.transaction.annotation.EnableTransactionManagement cannot be resolved
我不得不将 jar 文件重新添加到我项目的库中,class 就在那里。感谢帮助 meriton
如果在 IntelliJ
中开发,请右键单击 POM
文件并添加为 Maven
项目。它应该可以解决问题。
之前
之后
您缺少对象关系映射的 spring-orm
依赖项。
只需将其导入到您的 pom 文件中即可
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
package com.shaun.spring.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan("com.shaun.spring")
@EnableTransactionManagement
public class ApplicationContextConfig {
// @Bean configurations go here...
}
我对@EnableTransactionManagement 有疑问 发生的以下错误 is:EnableTransactionManagement 无法解析为类型。
我的 pom.xml 中有以下依赖项:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
我也尝试过使用以下导入:
import org.springframework.transaction.annotation.EnableTransactionManagement;
这给了我以下错误:
The import org.springframework.transaction.annotation.EnableTransactionManagement cannot be resolved
我不得不将 jar 文件重新添加到我项目的库中,class 就在那里。感谢帮助 meriton
如果在 IntelliJ
中开发,请右键单击 POM
文件并添加为 Maven
项目。它应该可以解决问题。
之前
之后
您缺少对象关系映射的 spring-orm
依赖项。
只需将其导入到您的 pom 文件中即可
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>