您好,登錄后才能下訂單哦!
這篇文章主要介紹了SpringBoot如何讀取war包jar包和Resource資源,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
場景描述
在開發(fā)過程中我們經(jīng)常會碰到要在代碼中獲取資源文件的情況,而我在最近在SpringBoot項(xiàng)目中時(shí)碰到一個(gè)問題,就是在本地運(yùn)行時(shí),獲取本地的xml資源文件是能夠獲取到的,但是項(xiàng)目打成war包jar包啟動(dòng)運(yùn)行時(shí),就會發(fā)生問題,報(bào)找不到資源文件的錯(cuò)誤。然后經(jīng)過尋找排查確定了是下面代碼通過ClassLoader獲取路徑的時(shí)候出錯(cuò)了。
常用方式:
/** * @author mazhq * @Title: TestMain * @ProjectName: zeus * @Description: TODO * @date 2019/3/5 16:10 */ public class TestMain { public static void main(String[] args) { String path = TestMain.class.getClassLoader().getResource("1.xml").getPath(); System.out.println(path); } /** * 輸出: * */D:/demo_projects/sc-architecture/service-hi/target/classes/1.xml */ }
但是在將SpringBoot打包放到Linux服務(wù)器啟動(dòng)打印的目錄為
/data/zeus/service-hi-1.0.0-SNAPSHOT.war!/WEB-INF/classes!/1.xml
可以看到在Linux中無法直接訪問未經(jīng)解壓的文件,所以就會找不到文件。
解決辦法
1. 通過ClassLoader的getResourceAsStream()方法獲取其流,就能夠獲取到。
讀取jar里面的文件,我們只能用流去讀取,不能用File
public class TestMain { public static void main(String[] args) { try { List<String> content = IOUtils.readLines(TestMain.class.getClassLoader().getResourceAsStream("1.xml"), "UTF-8"); } catch (IOException e) { e.printStackTrace(); } } }
2. 采用絕對路徑將文件放到服務(wù)器某個(gè)路徑,在application.properties中配置路徑讀取。
3. 不推薦:將內(nèi)容放到數(shù)據(jù)庫中。
獲取資源的兩種方式
通常在開發(fā)過程中會碰到讀取配置文件的問題,一般有兩種方式進(jìn)行讀取。一種是Class.getResource(String path),一種是ClassLoader.getResource(String path),這兩種雖然都能讀取文件,但是在path的填寫上有一點(diǎn)點(diǎn)的不同。
Class.getResource
path以/開頭:則是從ClassPath根下獲取
path不以/開頭:默認(rèn)是從此類所在的包下取資源
下面有個(gè)例子
public class TestMain { public static void main(String[] args) { System.out.println(TestMain.class.getResource("/")); System.out.println(TestMain.class.getResource("")); } /** * 輸出: * * file:/D:/demo_projects/sc-architecture/service-hi/target/classes/ * file:/D:/demo_projects/sc-architecture/service-hi/target/classes/com/mazhq/servicehi/ */ }
那么讀取在resource下的1.xml,就如下的獲取方法
public class TestMain { public static void main(String[] args) { System.out.println(TestMain.class.getResource("/1.xml")); System.out.println(TestMain.class.getResource("../../../1.xml")); } /** * 輸出: * * file:/D:/demo_projects/sc-architecture/service-hi/target/classes/1.xml * file:/D:/demo_projects/sc-architecture/service-hi/target/classes/1.xml */ }
ClassLoader.getResource
ClassLoader.getResource的path中不能以/開頭,path是默認(rèn)是從根目錄下進(jìn)行讀取的
代碼如下:
public class TestMain { public static void main(String[] args) { System.out.println(TestMain.class.getClassLoader().getResource("")); System.out.println(TestMain.class.getClassLoader().getResource("/")); } /** * 輸出: * * file:/D:/demo_projects/sc-architecture/service-hi/target/classes/ * null */ }
從上面例子我們可以看到
TestMain.class.getClassLoader().getResource("")=TestMain.class.getResource("/")
兩個(gè)獲取資源文件的差別
其實(shí)查看Class.getResource中可以看到
public java.net.URL getResource(String name) { name = resolveName(name); ClassLoader cl = getClassLoader0(); if (cl==null) { // A system class. return ClassLoader.getSystemResource(name); } return cl.getResource(name); }
他最后調(diào)用的還是ClassLoader.getResource這個(gè)方法,那么為什么會有path的差別呢,因?yàn)槠鋜esolveName方法中對傳的/進(jìn)行了解析,解析為了空字符串。
resolveName 方法實(shí)現(xiàn)如下:
private String resolveName(String name) { if (name == null) { return name; } if (!name.startsWith("/")) { Class<?> c = this; while (c.isArray()) { c = c.getComponentType(); } String baseName = c.getName(); int index = baseName.lastIndexOf('.'); if (index != -1) { name = baseName.substring(0, index).replace('.', '/') +"/"+name; } } else { name = name.substring(1); } return name; }<br><br> //傳入 "/" 返回 ""
最后:大家用的時(shí)候注意一下這些問題,避免在這個(gè)上面耽誤時(shí)間。
以上就是本文的全部內(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)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。