码迷,mamicode.com
首页 > Web开发 > 详细

[错误日志]Could not initialize class org.hibernate.validator.internal.engine.ConfigurationImpl

时间:2020-04-01 16:31:28      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:分析   color   code   www   ram   font   nal   练习   group   

  最近在练习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

[错误日志]Could not initialize class org.hibernate.validator.internal.engine.ConfigurationImpl

标签:分析   color   code   www   ram   font   nal   练习   group   

原文地址:https://www.cnblogs.com/709539062rao/p/12613209.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!