溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

spring boot使用logback實(shí)現(xiàn)多環(huán)境日志配置詳解

發(fā)布時(shí)間:2020-09-22 01:14:02 來(lái)源:腳本之家 閱讀:250 作者:封巍 欄目:編程語(yǔ)言

軟件生存周期中,涉及代碼運(yùn)行的環(huán)節(jié)有編碼、測(cè)試和維護(hù)階段,而一套成熟的代碼,在此三個(gè)階段,數(shù)據(jù)庫(kù)、日志路徑、日志級(jí)別、線(xiàn)程池大小等配置一般會(huì)不一樣。作為開(kāi)發(fā)人員,希望將代碼與配置解耦合,不同的環(huán)境,代碼一套,而配置多套。

針對(duì)于多環(huán)境的配置,可以使用maven的profile及filter配置,在打包環(huán)節(jié)通過(guò)打包命令 mvn clean package -P dev/test/product決定所打環(huán)境的war/jar包。此種解決方案,產(chǎn)生的war\jar包在不同環(huán)境的是不同的,因此MD5校驗(yàn)和也不同。一次敏捷開(kāi)發(fā)結(jié)束后,開(kāi)發(fā)、測(cè)試、線(xiàn)上的的war/jar包,只能人為添加標(biāo)識(shí)來(lái)識(shí)別,比如test-1.0.1和prod-1.0.1是功能相同、環(huán)境不同的war/jar包。如果是spring boot項(xiàng)目,可以使用yaml配置,實(shí)現(xiàn)多環(huán)境配置,在項(xiàng)目啟動(dòng)時(shí),通過(guò)添加參數(shù)--spring.profiles.active=dev/test/production,指定項(xiàng)目運(yùn)行的環(huán)境。此方案的jar包在不同運(yùn)行環(huán)境均是一個(gè),不會(huì)出現(xiàn)測(cè)試與生產(chǎn)的war/jar包代碼不一致的問(wèn)題(第一種方案在測(cè)試打包后,生產(chǎn)打包前,可能會(huì)有代碼提交,需人工控制此階段的行為)。

本文基于第二種配置方案,但在使用logback作為日志方案時(shí),產(chǎn)生了一些問(wèn)題, 具體見(jiàn)下文。

問(wèn)題1:

使用application.yml配置多環(huán)境變量,使用logback.xml實(shí)現(xiàn)日志配置,不能實(shí)現(xiàn)多環(huán)境配置(即logback配置未生效),打印的日志路徑和日志級(jí)別不是配置文件中的值。

項(xiàng)目配置文件-application.yml 

spring:
 profiles.active: dev
---
spring:
 profiles: dev
log:
 path: ./logs
 level: debug
---
spring:
 profiles: test
log:
 path: /home/user/logs/
 level: info
---

日志配置文件-logback.xml

<?xml version="1.0" encoding="UTF-8"?>
<configuration debug="true" scan="true" scanPeriod="30 seconds">

  <appender name="STDOUT">
    <encoder>
      <pattern>%d{yyyy-MM-dd HH:mm:ss} [%level] [%class:%line] - %m %n</pattern>
    </encoder>
  </appender>


  <appender name="FILE-OUT">
    <file>${log.path}/xxx.log</file>
    <encoder>
      <pattern>%d{yyyy-MM-dd HH:mm:ss} [%level] [%class:%line] - %m %n</pattern>
    </encoder>
    <rollingPolicy>
      <fileNamePattern>${log.path}/xxx.%d{yyyy-MM-dd}.log.zip</fileNamePattern>
      <!-- 30 days -->
      <maxHistory>30</maxHistory>
    </rollingPolicy>
  </appender>


  <root level="${log.level}">
    <appender-ref ref="STDOUT" />
    <appender-ref ref="FILE-OUT" />
  </root>
</configuration>

查閱官方文檔( http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-custom-log-levels),發(fā)現(xiàn)問(wèn)題之所在

spring boot使用logback實(shí)現(xiàn)多環(huán)境日志配置詳解

spring boot使用logback實(shí)現(xiàn)多環(huán)境日志配置詳解

即,logback.xml加載早于application.yml,需改用logback-spring.xml實(shí)現(xiàn)日志配置

問(wèn)題2:

經(jīng)上修改后,發(fā)現(xiàn)配置文件已生效,但logback-spring.xml中的變量并未生效,日志內(nèi)容見(jiàn)下

11:41:11,450 |-INFO in c.q.l.core.rolling.TimeBasedRollingPolicy@962287291 - Will use the pattern log.path_IS_UNDEFINED/error.%d{yyyy-MM-dd}.log for the active file
11:41:11,453 |-INFO in c.q.l.core.rolling.DefaultTimeBasedFileNamingAndTriggeringPolicy - The date pattern is 'yyyy-MM-dd' from file name pattern 'log.path_IS_UNDEFINED/error.%d{yyyy-MM-dd}.log.zip'.

...

11:41:11,471 |-INFO in ch.qos.logback.classic.joran.action.RootLoggerAction - Setting level of ROOT logger to DEBUG

看似log.level已生效,log.path未生效,其實(shí)不然,經(jīng)修改application.yml中l(wèi)og.path: others(info, error),日志都為以上內(nèi)容

查看官方文檔

spring boot使用logback實(shí)現(xiàn)多環(huán)境日志配置詳解

官方文檔指明,需要使用<springProperty>,才可使用application.properties(或application.yml)中的值

經(jīng)修改logback-spring.xml后,問(wèn)題解決

最終的日志配置文件-logback-spring.xml

<?xml version="1.0" encoding="UTF-8"?>
<configuration debug="true" scan="true" scanPeriod="30 seconds">
  <springProperty scope="context" name="logLevel" source="log.level"/>
  <springProperty scope="context" name="logPath" source="log.path"/>

  <appender name="STDOUT">
    <encoder>
      <pattern>%d{yyyy-MM-dd HH:mm:ss} [%level] [%class:%line] - %m %n</pattern>
    </encoder>
  </appender>

  <appender name="FILE-OUT">
    <file>${logPath}/xxx.log</file>
    <encoder>
      <pattern>%d{yyyy-MM-dd HH:mm:ss} [%level] [%class:%line] - %m %n</pattern>
    </encoder>
    <rollingPolicy>
      <fileNamePattern>${logPath}/xxx.%d{yyyy-MM-dd}.log.zip</fileNamePattern>
      <!-- 30 days -->
      <maxHistory>30</maxHistory>
    </rollingPolicy>
  </appender>

  <root level="${logLevel}">
    <appender-ref ref="STDOUT" />
    <appender-ref ref="FILE-OUT" />
  </root>
</configuration>

備注:

1.本文暫不討論使用配置中心實(shí)現(xiàn)多環(huán)境配置管理

2. How to package a maven program?

mvn clean package [-Dmaven.test.skip]

3.How to start a spring boot program?

java -jar xxx-1.0.0.jar --spring.profiles.active=dev(default)/test/production [--log.level=debug]

其中,--log.level仍可以修改--spring.profiles.active生效后的變量值,可用于線(xiàn)上環(huán)境debug(不用重新打包,重新啟動(dòng)即可),但是不建議線(xiàn)上debug。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI