引入@NotNull,一直导入不了包,也发现不了import javax.validation.constraints.NotNull;这个包,出现了上述问题,
起因
SpringBoot 2.3.0版本之后就没有引入validation对应的包
而我的项目用的是2.3.3.RELEASE版本
解决方法
导入Spring Boot Starter Validation
根据自己项目所使用的版本号导
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>