从Log4j.xml转换为Log4j2.xml

时间:2018-01-22 15:19:07

标签: java spring maven spring-boot log4j2

亲爱的Stackoverflow人我需要你的帮助。

我目前正在使用log4j日志记录的项目,我想将其升级到log4j2。这背后的原因是我想实现spring配置文件并将日志文件引用到兼容的环境日志配置。

我的问题是我将log4j.xml文件从我的Resource文件夹中移出,然后插入了我的log4j2.xml。但是应用程序仍然在寻找log4j.xml。在命令行中使用Log4j.debug获取以下消息。

log4j: Trying to find [log4j.xml] using context classloader sun.misc.Launcher$AppClassLoader@18b4aac2.
log4j: Trying to find [log4j.xml] using sun.misc.Launcher$AppClassLoader@18b4aac2 class loader.
log4j: Trying to find [log4j.xml] using ClassLoader.getSystemResource().
log4j: Trying to find [log4j.properties] using context classloader sun.misc.Launcher$AppClassLoader@18b4aac2.
log4j: Trying to find [log4j.properties] using sun.misc.Launcher$AppClassLoader@18b4aac2 class loader.
log4j: Trying to find [log4j.properties] using ClassLoader.getSystemResource().
log4j: Could not find resource: [null].
log4j:WARN No appenders could be found for logger (org.springframework.web.context.support.StandardServletEnvironment).
log4j:WARN Please initialize the log4j system properly.

显然我的应用程序仍然认为我试图使用常规的log4j。

我已从

更新了我的依赖项
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-log4j</artifactId>
</dependency>

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>

我已经在我的pom.xml文件中删除了所有其他类型的log4j日志记录。我还从spring-boot-starter依赖项中排除了logback。

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

感谢所有帮助。如果我有一个引用的.jar我自己的项目使用log4j,这可能会发生冲突,还是会出现可见错误?

0 个答案:

没有答案