0


Standard Commons Logging discovery in action with spring-jcl

完整异常信息

Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts

翻译

标准Commons日志发现与spring-jcl一起使用:请从类路径中删除Commons-Logging.jar,以避免潜在的冲突

解决方式

<!--排除commons-logging-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-orm</artifactId>
    <exclusions>
        <exclusion>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
        </exclusion>
    </exclusions>
</dependency>

本文转载自: https://blog.csdn.net/qq_74312711/article/details/134827284
版权归原作者 翰戈.summer 所有, 如有侵权,请联系我们删除。

“Standard Commons Logging discovery in action with spring-jcl”的评论:

还没有评论