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 Valida
·
微服务启动失败报错
在网上找了很长时间尝试了很多办法都没有用,这让我十分烦躁,这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>
重启微服务,启动成功
博主新系列:大厂面试题请移步 大厂面试题专栏
更多推荐
已为社区贡献3条内容
所有评论(0)