springboot 配置log4j2日志
时间: 2023-04-23 16:02:25 浏览: 152
spring日志配置为log4j
Spring Boot 配置 Log4j2 日志可以通过以下步骤实现:
1. 在 pom.xml 文件中添加 Log4j2 的依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
```
2. 在 src/main/resources 目录下创建 log4j2.xml 文件,配置日志输出格式、级别、文件路径等信息。例如:
```xml
<?xml version="1." encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
<RollingFile name="RollingFile" fileName="logs/app.log"
filePattern="logs/app-%d{yyyy-MM-dd}-%i.log.gz">
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
<Policies>
<TimeBasedTriggeringPolicy/>
<SizeBasedTriggeringPolicy size="10MB"/>
</Policies>
</RollingFile>
</Appenders>
<Loggers>
<Root level="info">
<AppenderRef ref="Console"/>
<AppenderRef ref="RollingFile"/>
</Root>
</Loggers>
</Configuration>
```
3. 在 Spring Boot 的配置文件 application.properties 或 application.yml 中添加以下配置:
```properties
logging.config=classpath:log4j2.xml
```
或
```yaml
logging:
config: classpath:log4j2.xml
```
这样就完成了 Spring Boot 配置 Log4j2 日志的过程。在代码中使用 Log4j2 日志可以直接通过注入 Logger 对象来实现,例如:
```java
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
@Service
public class MyService {
private static final Logger logger = LogManager.getLogger(MyService.class);
public void doSomething() {
logger.info("doing something...");
}
}
```
阅读全文