LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.slf4j.impl.Log4jLoggerFactory loaded from file:/D:/maven/repository/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.jar). If you are using WebLogic you will need to add 'org.slf4j' to prefer-application-packages in WEB-INF/weblogic.xml: org.slf4j.impl.Log4jLoggerFactory含义
时间: 2024-04-05 12:29:35 浏览: 166
org.slf4j.LoggerFactory
这个错误信息表示你的项目中Logback和Log4j发生了冲突。两个日志框架都在classpath中,但是LoggerFactory不是Logback LoggerContext。为了解决这个问题,你应该从项目中删除Logback或Log4j,具体取决于你更喜欢使用哪个日志框架。或者,如果你正在使用WebLogic,你可以通过将'org.slf4j'添加到WEB-INF/weblogic.xml的prefer-application-packages中来优先使用Log4j。org.slf4j.impl.Log4jLoggerFactory是Log4j的一个实现类,它与Logback发生冲突导致了这个错误。
阅读全文