SpringBoot启动报错Action: Add an implementation, such as Hibernate Validator, to the classpath解决办法
Posted Code皮皮虾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot启动报错Action: Add an implementation, such as Hibernate Validator, to the classpath解决办法相关的知识,希望对你有一定的参考价值。
微服务启动失败报错
在网上找了很长时间尝试了很多办法都没有用,这让我十分烦躁,这Hibernate Validator我根本没用,他报什么错啊,但他又报Add an implementation, such as Hibernate Validator, to the classpath错误,那我只好死马当活马医,加上这个依赖看看,没想到还真成功了。
解决办法
找到项目中Hibernate Validator的依赖版本
在pom文件中添加Hibernate Validator该版本的依赖
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.0.18.Final</version>
</dependency>
重启微服务,启动成功
博主新系列:大厂面试题请移步 大厂面试题专栏
以上是关于SpringBoot启动报错Action: Add an implementation, such as Hibernate Validator, to the classpath解决办法的主要内容,如果未能解决你的问题,请参考以下文章