溫馨提示×

溫馨提示×

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

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

SpringBoot之@Value獲取application.properties配置無效如何解決

發(fā)布時間:2023-03-06 17:26:50 來源:億速云 閱讀:123 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要講解了“SpringBoot之@Value獲取application.properties配置無效如何解決”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“SpringBoot之@Value獲取application.properties配置無效如何解決”吧!

@Value獲取application.properties配置無效問題

無效的原因主要是要注意@Value使用的注意事項:

  • 1、不能作用于靜態(tài)變量(static);

  • 2、不能作用于常量(final);

  • 3、不能在非注冊的類中使用(需使用@Componet、@Configuration等);

  • 4、使用有這個屬性的類時,只能通過@Autowired的方式,用new的方式是不會自動注入這些配置的。

這些注意事項也是由它的原理決定的:

springboot啟動過程中,有兩個比較重要的過程,如下:

  • 1 、掃描,解析容器中的bean注冊到beanFactory上去,就像是信息登記一樣。

  • 2、 實例化、初始化這些掃描到的bean。

@Value的解析就是在第二個階段。BeanPostProcessor定義了bean初始化前后用戶可以對bean進行操作的接口方法,它的一個重要實現(xiàn)類AutowiredAnnotationBeanPostProcessor正如javadoc所說的那樣,為bean中的@Autowired和@Value注解的注入功能提供支持。

下面說下兩種方式:

resource.test.imageServer=http://image.everest.com

1、第一種

@Configuration
public class EverestConfig {
 
    @Value("${resource.test.imageServer}")
    private String imageServer;
 
    public String getImageServer() {
        return imageServer;
    }
 
}

2、第二種

@Component
@ConfigurationProperties(prefix = "resource.test")
public class TestUtil {
 
    public String imageServer;
 
    public String getImageServer() {
        return imageServer;
    }
 
    public void setImageServer(String imageServer) {
        this.imageServer = imageServer;
    }
}

然后在需要的地方注入就可

    @Autowired
    private TestUtil testUtil;
 
    @Autowired
    private EverestConfig everestConfig;
 
 
    @GetMapping("getImageServer")
    public String getImageServer() {
        return testUtil.getImageServer();
//        return everestConfig.getImageServer();
    }

@Value獲取application.properties中的配置取值為Null

@Value("${spring.datasource.url}")

private String url;

獲取值為NUll。

解決方法

不要使用new的方法去創(chuàng)建工具類(DBUtils)對象,而是使用@Autowired的方式交由springboot來管理,在工具類上加上@Component,定義的屬性變量不要加static。

正確做法

@Autowired
private DBUtils jdbc;
  
@Component
public class DBUtils{
    
    @Value("${spring.datasource.url}")
    private String url;
}

感謝各位的閱讀,以上就是“SpringBoot之@Value獲取application.properties配置無效如何解決”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對SpringBoot之@Value獲取application.properties配置無效如何解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

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

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

AI