web-dev-qa-db-ja.com

Spring Bootアプリケーションでlog4j2を正しく使用する方法

ロギング目的でのみアプリケーションにlog4j2を含めたかったのです。そのため、プロジェクトのpom.xmlに次の依存関係を含めました。

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

しかし、アプリケーションの開始時に、次の例外が発生します。

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/m2repo/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/m2repo/org/Apache/logging/log4j/log4j-slf4j-impl/2.12.1/log4j-slf4j-impl-2.12.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]

多くのプラットフォームでそれについてさらに調査したところ、log4j2を使用する必要があると思ったので、logbackの依存関係を除外する方法を見つけましたが、そのjarを除外すると、次のエラーが発生します。

Exception in thread "main" Java.lang.ExceptionInInitializerError
Caused by: org.Apache.logging.log4j.LoggingException: log4j-slf4j-impl cannot be present with log4j-to-slf4j

したがって、それを解決するために、私はlog4jからslf4jへの依存関係も除外しました。

そして最後に機能し始めますが、Spring boot Internalに関連する多くのログメッセージが表示されます。例えば ​​:

2019-12-05 12:05:01.649 [DEBUG]  [restartedMain] - Included patterns for restart : []
2019-12-05 12:05:01.649 [DEBUG]  [restartedMain] - Excluded patterns for restart : [/spring-boot-actuator/target/classes/, /spring-boot-devtools/target/classes/, /spring-boot/target/classes/, /spring-boot-starter-[\w-]+/, /spring-boot-autoconfigure/target/classes/, /spring-boot-starter/target/classes/]
2019-12-05 12:05:01.649 [INFO ]  [restartedMain] - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-12-05 12:05:01.649 [DEBUG]  [restartedMain] - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@3883fd6d
2019-12-05 12:05:01.666 [DEBUG]  [restartedMain] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2019-12-05 12:05:01.686 [DEBUG]  [restartedMain] - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
2019-12-05 12:05:02.037 [DEBUG]  [restartedMain] - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
2019-12-05 12:05:02.043 [DEBUG]  [restartedMain] - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBeanDefinitionValidator'
2019-12-05 12:05:02.055 [DEBUG]  [restartedMain] - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
2019-12-05 12:05:02.056 [DEBUG]  [restartedMain] - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
2019-12-05 12:05:02.059 [DEBUG]  [restartedMain] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'

私のpom.xmlは次のようなものです:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.Apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 https://maven.Apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.0.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.log4j2</groupId>
    <artifactId>log4j2-check</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>log4j2-check</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <Java.version>1.8</Java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>ch.qos.logback</groupId>
                    <artifactId>logback-classic</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.Apache.logging.log4j</groupId>
                    <artifactId>log4j-to-slf4j</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-log4j2</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

また、次のようなlog4j2プロパティ:

name=PropertiesConfig
property.filename = Test
appenders = console
appender.console.type = Console
appender.console.name = STDOUT
appender.console.layout.type = PatternLayout
appender.console.layout.pattern = %d{yyyy-MM-dd HH:mm:ss.SSS} [%-5level]  [%t] - %msg%n
rootLogger.level = debug
rootLogger.appenderRefs = STDOUT
rootLogger.appenderRef.stdout.ref = STDOUT

アプリケーションの目的でのみlog4j2を使用するために必要な正しい構成はどのようにできるか、または何であり、Springブート用ではありません。

3
Golu

それで、春のブートから予期しないメッセージが出力される原因となった問題を特定しました。 log4j2構成から、次のように設定しました

rootLogger.level = debug

このプロパティにより、log4j2は、スプリングブートのすべての内部メッセージをデバッグモードに設定して印刷します。

次のように変更します:

rootLogger.level = info

問題を解決します。

これで、アプリケーションは、レベルがinfoより大きいロガーのみを出力します。そのため、不要なログメッセージは出力されません。

それは問題ではなかったと思います、log4j2は正しく機能していましたが、私の構成設定は私の要件に従って正しくありませんでした。

0
Golu

これは、Spring Bootの内部ファイルを処理するlog4j2ロガーが構成に含まれているためと考えられます。

見てみましょう ここ -これは関連する定義です。

技術的には、log2j2にはあまり詳しくありませんが、 xInclude ディレクティブをサポートしているようです

0
Mark Bramnik