springboot集成log4j2
时间: 2023-09-16 19:13:10 浏览: 77
SpringBoot整合log4j
1. 添加依赖
在 pom.xml 文件中添加 log4j2 的依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
```
2. 配置 log4j2
在 src/main/resources 目录下新建一个 log4j2.xml 文件,配置 log4j2 的输出方式和日志级别:
```xml
<?xml version="1.0" 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>
</Appenders>
<Loggers>
<Root level="info">
<AppenderRef ref="Console"/>
</Root>
</Loggers>
</Configuration>
```
这里配置了一个名为 Console 的 Appender,将日志输出到控制台。日志级别为 info。
3. 测试
在代码中添加日志输出:
```java
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
private static final Logger logger = LoggerFactory.getLogger(Application.class);
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
logger.info("Hello, world!");
}
}
```
启动应用程序,可以在控制台看到输出的日志信息:
```
2022-09-15 16:33:41.422 [main] INFO com.example.demo.Application - Hello, world!
```
阅读全文