您好,登錄后才能下訂單哦!
做新應(yīng)用就是這樣,會遇到各種問題,昨天剛解決了加載某一個類時候拋出了 class is not visible from class loader 的問題,今天就有遇到了日志文件找不到的問題,還是和二方庫有關(guān)的,下面就一一道來。
正常情況下在 src/main/resources 目錄放下 logback-spring.xml 的配置文件(使用logback日志系統(tǒng)),如下圖
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方法做了啥:
代碼(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都不會有問題。
日常開發(fā)中二方包里面不要帶有日志配置文件,二方庫中使用日志一般都是使用代碼創(chuàng)建的方式。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(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)容。