首頁 > 軟體

SpringBoot之@Value獲取application.properties設定無效的解決

2023-03-07 06:00:59

@Value獲取application.properties設定無效問題

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

  • 1、不能作用於靜態變數(static);
  • 2、不能作用於常數(final);
  • 3、不能在非註冊的類中使用(需使用@Componet、@Configuration等);
  • 4、使用有這個屬性的類時,只能通過@Autowired的方式,用new的方式是不會自動注入這些設定的。

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

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

  • 1 、掃描,解析容器中的bean註冊到beanFactory上去,就像是資訊登記一樣。
  • 2、 範例化、初始化這些掃描到的bean。

@Value的解析就是在第二個階段。BeanPostProcessor定義了bean初始化前後使用者可以對bean進行操作的介面方法,它的一個重要實現類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的方法去建立工具類(DBUtils)物件,而是使用@Autowired的方式交由springboot來管理,在工具類上加上@Component,定義的屬性變數不要加static。

正確做法

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

總結

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com