English 中文(简体)
1. 更新原第1.2版,即2.16.0或以后
原标题:updating log4j version 1.2 version to 2.16.0 or later

我如何将log4j版本从1.2更新到2.16或更高版本?这是我当前在pom.xml文件中(使用maven)对job4j-api和job4j-core进行的操作,但对于仅job4j没有做任何处理

        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-api</artifactId>
            <version>2.17.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-core</artifactId>
            <version>2.17.1</version>
        </dependency>

I can see their current versions and that it is not updated in the shell view here. I tried adding the following snippet

 <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>2.17.1</version>
        </dependency>

但似乎没有起作用。我需要在哪里更新jar文件吗?任何提示将不胜感激。谢谢。

问题回答

第一种组合是正确的,你可以看到从log4j 1 log4j 2的迁徙指南,以继续移徙:

在你使用扶养日志4j时,添加标记、提标或排除标识和查询。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签