【JavaEE进阶】 Spring Boot⽇志
在Spring Boot中,我们可以通过配置文件或者代码的方式来设置日志的级别、输出格式以及输出位置。
- 配置文件方式
在application.properties
或application.yml
中配置日志级别:
# application.properties
logging.level.root=WARN
logging.level.org.springframework.web=DEBUG
logging.level.com.example.demo.controller=INFO
或者
# application.yml
logging:
level:
root: WARN
org.springframework.web: DEBUG
com.example.demo.controller: INFO
- 代码方式
在Java配置类中配置日志级别:
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.boot.logging.LogLevel;
import org.springframework.boot.logging.LoggingSystem;
@Configuration
public class LogConfig {
@Bean
public static void setLogLevel() {
LoggingSystem.get(LogManager.getContext(false)).setLogLevel("com.example.demo.controller", LogLevel.INFO);
}
}
- 使用
logback-spring.xml
配置日志
创建logback-spring.xml
文件在src/main/resources
目录下,并配置日志:
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="STDOUT" />
</root>
</configuration>
以上是Spring Boot中设置日志的常见方式,你可以根据项目需求选择合适的方法进行配置。
评论已关闭