Java 导入语句“无法解析导入 javax.validation.constraints.NotNull”中的错误

2022-09-01 05:30:43

我是Java和Spring Framework的新手。在开发Spring roo项目后,我发现类中存在以下错误:

The import javax.validation.constraints.NotNull cannot be resolved

NotNull cannot be resolved to a type

Iam 使用 STS 3.1.0.RELEASE

有人可以指导我我做什么以及如何纠正它吗?

提前致谢


答案 1

我遇到了同样的问题。我发现最新版本的Spring Boot需要单独的依赖项来验证。我尝试在pom.xml文件中添加下面的依赖项,并且它起作用了。

<dependency> 
    <groupId>org.springframework.boot</groupId> 
    <artifactId>spring-boot-starter-validation</artifactId> 
</dependency>

答案 2

必须将包含此类的 jar 添加到项目的生成路径中:http://mvnrepository.com/artifact/javax.validation/validation-api/1.0.0.GA


推荐