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

@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;
}

總結

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: