Spring Boot中实现logback多环境日志配置

Posted Jim

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot中实现logback多环境日志配置相关的知识,希望对你有一定的参考价值。

在Spring Boot中,可以在logback.xml中的springProfile标签中定义多个环境
logback.xml:

<springProfile name="production">
    <root level="DEBUG">
        <appender-ref ref="STDOUT"/>

    </root>
</springProfile>
<springProfile name="dev">
    <root level="DEBUG">
        <appender-ref ref="CONSOLE"/>

    </root>
</springProfile>

现在想要将logback.xml文件拆分为logback-production.xml,logback-dev.xml两个文件(logback-{profile}.xml),而不是定义在同一个文件中。然后应用会根据profile确定使用哪个配置文件。

application.properties里面配置:

logging.config: classpath:logback-${spring.profiles.active}.xml

启动时指定:

java -jar xxx.jar --spring.profiles.active=dev

也可以在application.properties指定:

spring.profiles.active=dev

 

参考:

https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-custom-log-configuration(官方配置参考,一切答案都在这里)

http://blog.csdn.net/m0_37895333/article/details/72457007

http://www.cnblogs.com/wuyechun/p/6800956.html

http://blog.csdn.net/vitech/article/details/53812137

以上是关于Spring Boot中实现logback多环境日志配置的主要内容,如果未能解决你的问题,请参考以下文章

spring boot、logback 和 logging.config 属性

Spring Boot 多环境配置

通过spring-boot-devtools在IDEA中实现热部署

Spring Boot中实现定时任务的两种方式

利用consul在spring boot中实现最简单的分布式锁

Spring Boot 应用系列 5 -- Spring Boot 2 整合logback