在 Spring 应用程序中,我尝试使用 Log4j2 而不是默认的日志记录实现 Logback。所以在我的 pom.xml 中,我排除spring-boot-starter-logging并包含了spring-boot-starter-log4j2. 所以我可以使用Log4j2。
但是,如果我现在打开 Spring Boot Acuator 端点,localhost:8080/actuator/loggers我将不再看到所有记录器。使用 Logback 有数百个记录器,但使用 Log4j2 我只看到大约 10 个。
我的问题是:如何在 Spring-Boot-Application 中使用 Log4j2 而不是 Logback 时查看所有记录器的完整列表?
编辑:这是我的 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>log4jdemoclient1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>log4jdemoclient1</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<!-- needed for spring boot admin (actuator) -->
<spring-boot-admin.version>2.0.3</spring-boot-admin.version>
</properties>
<dependencies>
<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>
慕尼黑的夜晚无繁华
相关分类