gpt4 book ai didi

java - 如何使用 .properties 文件和 maven 在 Log4j 中启用调试?

转载 作者:行者123 更新时间:2023-11-30 02:35:27 26 4
gpt4 key购买 nike

我正在尝试为 Maven 项目启用打印调试信息。我将 log4j 添加为 pom.xml 的依赖项,并添加 log4j.properties 以及 log4j2.propertiesrootloger=DEBUG, sdout src/main/resources 文件夹。然后在所需的类中,我在所需的类“org.pakage1.ClassA”中启动一个记录器并添加 logger.debug() 行,但我的领事中没有显示任何内容。当我检查 logger.isDebugEnabled() 时,它返回 false

  • pom.xml

    <dependencies>
    .....
    <dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
    <version>1.7.25</version>
    </dependency>

  • log4j.properties 和 log4j2 类似

    log4j.debug=true
    log4j.rootLogger=DEBUG, stdout

    log4j.appender.Stdout.threshold=debug
    log4j.appender.stdout=org.apache.log4j.ConsoleAppender
    log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
    log4j.appender.stdout.layout.ConversionPattern=%-5p %d [%t] %c{1} - %m%n

    作为额外的步骤,我尝试添加

    log4j.logger.extendedsldnf.ExtendedSLDNFEvaluator=DEBUG 

    但它也不起作用。

    package package1;
    ......
    class ClassA{
    private Logger logger = LoggerFactory.getLogger(getClass());
    ......
    public static void main(String []args){
    logger.debug("message");
    }


    }

知道我收到警告

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]

此外,该项目还有其他子模块,这些子模块也启用了类似的日志记录,并且在 log4j.properties 文件中声明时,调试消息运行良好

是不是少了什么东西?如何检查是否存在冲突?

最佳答案

added log4j.properties as well as log4j2.properties

第一个用于 log4j 1,第二个用于 log4j 2。声明两者并不能解决您的问题。
仅使用与您的实际 log4j 版本匹配的版本。

SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]

事实上,问题相当明确:您希望使用 log4J 实现作为 SLF4J 绑定(bind)但是您在运行时在类路径中至少有另一个 SLF4J 绑定(bind)。这里提到了 Logback 中的 ContextSelectorStaticBinder,这是另一个绑定(bind)。
运行时,您必须在类路径中拥有 SLF4J 的单个实现/绑定(bind)。

要解决您的问题,相当简单。
当您使用 Maven 时,我建议您从应用程序的 agreggator pom 执行 mvn dependency:tree 命令,或者如果您没有 agreggator pom,则从打包应用程序的 pom 执行。
此命令会将依赖项(包括由 pom 拉取的传递依赖项)作为输出写入。

它会输出类似的内容:

[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ Test-Spring-Boot ---
[INFO] Test-Spring-Boot:Test-Spring-Boot:jar:0.0.1-SNAPSHOT
[INFO] \- org.springframework.boot:spring-boot-starter-web:jar:1.4.4.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter:jar:1.4.4.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot:jar:1.4.4.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-autoconfigure:jar:1.4.4.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-logging:jar:1.4.4.RELEASE:compile
[INFO] | | +- ch.qos.logback:logback-classic:jar:1.1.9:compile
[INFO] | | | +- ch.qos.logback:logback-core:jar:1.1.9:compile
[INFO] | | | \- org.slf4j:slf4j-api:jar:1.7.22:compile
[INFO] | | +- org.slf4j:jcl-over-slf4j:jar:1.7.22:compile
[INFO] | | +- org.slf4j:jul-to-slf4j:jar:1.7.22:compile
[INFO] | | \- org.slf4j:log4j-over-slf4j:jar:1.7.22:compile
[INFO] | +- org.springframework:spring-core:jar:4.3.6.RELEASE:compile
[INFO] | \- org.yaml:snakeyaml:jar:1.17:runtime
[INFO] +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.4.4.RELEASE:compile
[INFO] | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.5.11:compile
[INFO] | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.5.11:compile
[INFO] | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.5.11:compile
[INFO] +- org.hibernate:hibernate-validator:jar:5.2.4.Final:compile
[INFO] | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | +- org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
[INFO] | \- com.fasterxml:classmate:jar:1.3.3:compile
[INFO] +- com.fasterxml.jackson.core:jackson-databind:jar:2.8.6:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.8.6:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-core:jar:2.8.6:compile
[INFO] +- org.springframework:spring-web:jar:4.3.6.RELEASE:compile
[INFO] | +- org.springframework:spring-aop:jar:4.3.6.RELEASE:compile
[INFO] | +- org.springframework:spring-beans:jar:4.3.6.RELEASE:compile
[INFO] | \- org.springframework:spring-context:jar:4.3.6.RELEASE:compile
[INFO] \- org.springframework:spring-webmvc:jar:4.3.6.RELEASE:compile
[INFO] \- org.springframework:spring-expression:jar:4.3.6.RELEASE:compile

您只需确定从何处提取 logback 依赖项即可。
一旦识别出它,如果它是从我们自己的 pom.xml 中显式声明的依赖项,请删除它的依赖项。
如果是传递依赖,use the exclusion dependency mechanism of Maven .

关于java - 如何使用 .properties 文件和 maven 在 Log4j 中启用调试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43237958/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com