您好,登錄后才能下訂單哦!
這篇文章主要介紹“springboot怎么運(yùn)行jar包讀取外部配置文件”,在日常操作中,相信很多人在springboot怎么運(yùn)行jar包讀取外部配置文件問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”springboot怎么運(yùn)行jar包讀取外部配置文件”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
方法一:相對路徑設(shè)置配置文件
(1)在jar包同級目錄創(chuàng)建配置文件conf.properties并寫入配置數(shù)據(jù):
confData=data
(2)開始寫入自動化測試代碼
//from www.fhadmin.cn public class Test{ public String getData() throws IOException { //讀取配置文件 Properties properties = new Properties(); File file = new File("conf.properties"); FileInputStream fis = new FileInputStream(file); properties.load(fis); fis.close(); //獲取配置文件數(shù)據(jù) String confData = properties.getProperty("confData"); System.out.println(confData); } }
(3)執(zhí)行jar包
java -jar jarNanexxx
方法二:絕對路徑設(shè)置配置文件
解決問題:使用相對路徑的方法在jar包同級目錄手動執(zhí)行jar包時(shí)沒有問題,但使用linux系統(tǒng)的crontab文件定時(shí)調(diào)度時(shí)報(bào)錯(cuò),原因:因?yàn)槲覀兪謩訄?zhí)行某個(gè)腳本時(shí),是在當(dāng)前shell環(huán)境下進(jìn)行的,程序能找到環(huán)境變量;而系統(tǒng)自動執(zhí)行任務(wù)調(diào)度時(shí),除了默認(rèn)的環(huán)境,是不會加載任何其他環(huán)境變量的。因此就需要在crontab文件中指定任務(wù)運(yùn)行所需的所有環(huán)境變量,或者在程序中使用絕對路徑。
(1)在jar包同級目錄創(chuàng)建配置文件conf.properties并寫入配置數(shù)據(jù):
confData=data
(2)開始寫入自動化測試代碼
//from www.fhadmin.cn public class Test{ public String getData() throws IOException { //獲取jar包同級目錄 String path = this.getClass().getProtectionDomain().getCodeSource().getLocation().getPath(); String[] pathSplit = path.split("/"); String jarName = pathSplit[pathSplit.length - 1]; String jarPath = path.replace(jarName, ""); String pathName=jarPath+"minhang.properties"; System.out.println("配置文件路徑:"+jarPath); //讀取配置文件 Properties properties = new Properties(); File file = new File(pathName); FileInputStream fis = new FileInputStream(file); properties.load(fis); fis.close(); //獲取配置文件數(shù)據(jù) String confData = properties.getProperty("confData"); System.out.println(confData); } }
(3)執(zhí)行jar包
java -jar jarNanexxx
到此,關(guān)于“springboot怎么運(yùn)行jar包讀取外部配置文件”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(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)容。