溫馨提示×

溫馨提示×

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

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

SpringBoot之logback-spring.xml不生效的解決方法

發(fā)布時間:2020-09-30 16:36:55 來源:腳本之家 閱讀:401 作者:加多 欄目:編程語言

一、前言

做新應(yīng)用就是這樣,會遇到各種問題,昨天剛解決了加載某一個類時候拋出了 class is not visible from class loader 的問題,今天就有遇到了日志文件找不到的問題,還是和二方庫有關(guān)的,下面就一一道來。

二、問題產(chǎn)生

正常情況下在  src/main/resources 目錄放下  logback-spring.xml 的配置文件(使用logback日志系統(tǒng)),如下圖

SpringBoot之logback-spring.xml不生效的解決方法 

application.properties里面設(shè)置  spring.application.name=spring-boot-demo-application

引入了一個二方包,二方包里面有 logback.xml

按照上面配置,運(yùn)行后正常情況下我們希望在 user.home/spring-boot-demo-application/logs 目錄應(yīng)該有 applicaiton.log 日志文件,然而并沒有,連 spring-boot-demo-application 這個文件夾都沒有生成。

三、問題分析

那么我們就去看看日志系統(tǒng)是如何查找并解析日志配置文件的,SpringBoot中是使用LoggingApplicationListener這個類來進(jìn)行日志系統(tǒng)的初始化的。LoggingApplicationListener實(shí)現(xiàn)了ApplicationListener接口,那么我們通過時序圖看LoggingApplicationListener的onApplicationEvent方法做了啥:

SpringBoot之logback-spring.xml不生效的解決方法 

代碼(8)查找標(biāo)準(zhǔn)日志配置文件,什么是標(biāo)準(zhǔn)那,那么就看代碼(9)的代碼:

protected String[] getStandardConfigLocations() {
  return new String[] { "logback-test.groovy", "logback-test.xml", "logback.groovy",
    "logback.xml" };
 }

像 "logback-test.groovy", "logback-test.xml", "logback.groovy","logback.xml" 這些是標(biāo)準(zhǔn)的。

那么具體怎么查找那,要看代碼(10):

private String findConfig(String[] locations) {
  for (String location : locations) {
   ClassPathResource resource = new ClassPathResource(location,
     this.classLoader);
   if (resource.exists()) {
    return "classpath:" + location;
   }
  }
  return null;
 }

可知使用ClassPathResource類去查找,下面看ClassPathResource的exists方法:

public boolean exists() {
  return (resolveURL() != null);
 }

 
 protected URL resolveURL() {
  if (this.clazz != null) {
   return this.clazz.getResource(this.path);
  }
  else if (this.classLoader != null) {
   return this.classLoader.getResource(this.path);
  }
  else {
   return ClassLoader.getSystemResource(this.path);
  }
 }

可知是使用 this.classLoader.getResource(this.path); 去查找這里classLoader為AppClassloader。

如果代碼(8)沒有查找到配置,則執(zhí)行點(diǎn)(12),代碼12邏輯和代碼(8)類似只是查找文件名字不一樣,下面看下:

protected String[] getSpringConfigLocations() {
  String[] locations = getStandardConfigLocations();
  for (int i = 0; i < locations.length; i++) {
   String extension = StringUtils.getFilenameExtension(locations[i]);
   locations[i] = locations[i].substring(0,
     locations[i].length() - extension.length() - 1) + "-spring."
     + extension;
  }
  return locations;
 }

可知是在getStandardConfigLocations的文件名上拼接spring,拼接后的文件名為:

“` “l(fā)ogback-test-spring.groovy”, “l(fā)ogback-test-spring.xml”, “l(fā)ogback-spring.groovy”,”logback-spring.xml” “

綜上所述SpringBoot首先去查找標(biāo)準(zhǔn)的日志配置文件,如果找不到在去找拼接Spring的配置的文件。

那么上面我們說了應(yīng)用中是引入了一個含有l(wèi)ogback.xml的jar包,而這個jar包也是使用appclassloader加載的,所以在執(zhí)行步驟(8)的時候找到了jar包里面的logback.xml,所以就不會再去執(zhí)行步驟(12)來找我們自定義的logback-spring.xml了。

四、問題解決

方案一,修改我們的配置文件為logback.xml,這樣在步驟(8)的時候會首先查找logback.xml,應(yīng)該是可以找到的。

方案二、避免二方包里面含有l(wèi)ogback.xml,這種情況下,無論我們自己的配置是logback-spring.xml還是logback.xml都不會有問題。

五、總結(jié)

日常開發(fā)中二方包里面不要帶有日志配置文件,二方庫中使用日志一般都是使用代碼創(chuàng)建的方式。

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

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

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

AI