您好,登錄后才能下訂單哦!
SpringBoot中怎么使用@Value為靜態(tài)變量賦值,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
采用寫法取配置的,但取到的是個null。。。
@Value("${test.appKey}") private static String appKey;
才發(fā)現(xiàn)不能通過這種方式取配置來給static變量賦值
在網(wǎng)上搜索了一波,能夠通過setter方法或通過中間變量賦值的方法來解決這個問題
我就采用了setter方法,代碼如下:
private static String appKey; @Value("${test.appKey}") public void setAppKey(String appKey) { TestIt.appKey = appKey; }
需要注意的是,要把setAppKey方法的static去掉(如果是采用idea中g(shù)enerate生成的setter方法,會跟變量一樣帶上static,這里要去掉)
就這么寫完后,寫一個測試類來簡單測試一下是否可行:
@RunWith(SpringJUnit4ClassRunner.class) @SpringBootTest @TestPropertySource(properties = { "spring.config.location = classpath:application-dev.yml"}) public class TestIt { private static String appKey; @Value("${test.appKey}") public void setAppKey(String appKey) { TestIt.appKey = appKey; } @Test public void valueTest(){ System.out.println("forTest:" + appKey); } }
關(guān)于SpringBoot中怎么使用@Value為靜態(tài)變量賦值問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(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)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。