springboot 2.3之后消失的hibernate-validator解决方法

这篇文章主要介绍了springboot 2.3之后消失的hibernate-validator解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

项目升级到springboot2.3之后,参数校验的注解报错,发现spring-boot-starter-web的依赖项已经去除了依赖

点开spring-boot-starter-web源码看了下。

   4.0.0org.springframework.bootspring-boot-starter-web2.3.1.RELEASEspring-boot-starter-webStarter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded containerhttps://spring.io/projects/spring-boot Pivotal Software, Inc.https://spring.io  Apache License, Version 2.0https://www.apache.org/licenses/LICENSE-2.0  Pivotalinfo@pivotal.ioPivotal Software, Inc.https://www.spring.io scm:git:git://github.com/spring-projects/spring-boot.gitscm:git:ssh://git@github.com/spring-projects/spring-boot.githttps://github.com/spring-projects/spring-boot GitHubhttps://github.com/spring-projects/spring-boot/issues   org.springframework.bootspring-boot-dependencies2.3.1.RELEASEpomimport  org.springframework.bootspring-boot-starter2.3.1.RELEASEcompile org.springframework.bootspring-boot-starter-json2.3.1.RELEASEcompile org.springframework.bootspring-boot-starter-tomcat2.3.1.RELEASEcompile org.springframeworkspring-webcompile org.springframeworkspring-webmvccompile

没有发现 hibernate-validator

原版本如下:

  org.hibernate.validatorhibernate-validator6.0.17.Finalcompile

刚看了一下官方文档。需要手动引入

  org.springframework.bootspring-boot-starter-validation

到此这篇关于springboot 2.3之后消失的hibernate-validator解决方法的文章就介绍到这了,更多相关springboot2.3 hibernate-validator内容请搜索html中文网以前的文章或继续浏览下面的相关文章希望大家以后多多支持html中文网!

以上就是springboot 2.3之后消失的hibernate-validator解决方法的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » Java