spring boot 日志错误:org.hibernate.validator.internal.engine.ConfigurationImpl

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <exclusions>
        <exclusion>
            <artifactId>jboss-logging</artifactId>
            <groupId>org.jboss.logging</groupId>
        </exclusion>
        <exclusion>
            <artifactId>hibernate-validator</artifactId>
            <groupId>org.hibernate.validator</groupId>
        </exclusion>
    </exclusions>
</dependency>

排除掉2个jar包,有冲突


版权声明:本文为yangwy012210原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。