最近在练习SpringBoot框架的时候,遇到这个很奇怪的问题。我是通过sts的Spring start project功能直接生成的工程,当选择SpringBoot2.2版本以下的时候,运行没有任何问题,一旦选择2.2以上的版本时,会报
Could not initialize class org.hibernate.validator.internal.engine.ConfigurationImpl 这个错误。
经过检查发现SpringBoot已经自动依赖了该包:
分析有可能是jar包版本不对引起的冲突,于是将该依赖从中剥离出来:
Pom.xml中自动更改为:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> </exclusion> </exclusions> </dependency>
最后问题得以解决,成功正常运行。
参考原博文:https://www.cnblogs.com/hiscode/p/Could_not_initialize_class_ConfigurationImpl.html
原文地址:https://www.cnblogs.com/709539062rao/p/12613209.html
时间: 2024-10-27 21:55:46