要在Spring Boot項(xiàng)目中配置和啟用Log4j2日志框架,可以按照以下步驟進(jìn)行操作:
pom.xml
文件中添加Log4j2的依賴,示例如下:<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
創(chuàng)建Log4j2配置文件:在src/main/resources
目錄下創(chuàng)建一個(gè)log4j2.xml
或log4j2.yaml
文件,用于配置Log4j2的日志輸出格式和級(jí)別等信息。
配置Spring Boot日志級(jí)別:在application.properties
或application.yml
文件中配置Spring Boot的日志級(jí)別,示例如下:
logging.level.root=INFO
@Log4j2
注解,示例如下:import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import lombok.extern.log4j.Log4j2;
@SpringBootApplication
@Log4j2
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
這樣就可以在Spring Boot項(xiàng)目中配置和啟用Log4j2日志框架了。在代碼中使用@Slf4j
注解來注入Log4j2的日志對(duì)象,然后就可以通過該對(duì)象進(jìn)行日志輸出操作了。