首页 > 编程技术 > java

SpringBoot之@Value获取application.properties配置无效的解决

发布时间:2023-3-7 15:03 作者:猎人everest

@Value获取application.properties配置无效问题

无效的原因主要是要注意@Value使用的注意事项:

这些注意事项也是由它的原理决定的:

springboot启动过程中,有两个比较重要的过程,如下:

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

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持猪先飞。

原文出处:https://blog.csdn.net/d20062056/article/details/106744876

标签:[!--infotagslink--]

您可能感兴趣的文章: