spirngboot升级到2.3之后,hibernate-validator消失了

spirngboot升级到2.3之后,hibernate-validator消失

项目升级到springboot之后,参数校验的注解报错,经过与原项目对比,发现spring-boot-starter-web的依赖项已经去除了依赖

  • 原版会有如下:

      org.hibernate.validator
      hibernate-validator
      6.0.17.Final
      compile
 

 2.3中已经删除了

解决方法

手动引入依赖


      org.springframework.boot
      spring-boot-starter-validation
 

 官网链接:

https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.3-Release-Notes#validation-starter-no-longer-included-in-web-starters

你可能感兴趣的:(spring,boot)