springboot2.3之后,hibernate-validator依赖缺失今天在写项目的时候,发现@Blank注解没有了,检查了一下,发现老版本springboot内集成的hibernate-validator依赖已经去掉了如图,当前版本2.4.0的spring-boot-starter-web包版本2.1.3在网上查阅了一下:官方解释解决方法:在pom文件里手动加入依赖<!--https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation--><dependency><groupId>org...
继续阅读 >
分类:hibernate-validator
项目升级到springboot2.3之后,参数校验的注解报错,发现spring-boot-starter-web的依赖项已经去除了依赖点开spring-boot-starter-web源码看了下。<?xmlversion="1.0"encoding="UTF-8"?><projectxsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/xsd/maven-4.0.0.xsd"xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><!--Thism...
继续阅读 >