java – Spring @Value(“${}”)经常为null

栏目: Java · 发布时间: 5年前

内容简介:翻译自:https://stackoverflow.com/questions/28636060/spring-value-often-null
我正在使用 Spring

Boot应用程序.在某些@Component类中,加载@Value字段,而不是在其他类上,它们始终为null.

似乎在创建@ Bean / @组件后加载了@Value.

我需要从@Bean中的属性文件加载一些值.

你有什么建议吗?

在构造bean(执行构造函数)之后注入属性(以及所有bean依赖项).

如果需要,可以使用构造函数注入.

@Component
public class SomeBean {
    private String prop;
    @Autowired
    public SomeBean(@Value("${some.prop}") String prop) {
        this.prop = prop;
        //use it here
    }
}

另一种选择是在使用@PostConstruct注释的方法中移动构造函数逻辑,它将在创建bean之后执行,并且所有它的依赖项和属性值都将被解析.

翻译自:https://stackoverflow.com/questions/28636060/spring-value-often-null


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Producing Masculinity

Producing Masculinity

Michele White / Routledge / 2019-3 / $39.95

Thoughtful, witty, and illuminating, in this book Michele White explores the ways normative masculinity is associated with computers and the Internet and is a commonly enacted online gender practice. ......一起来看看 《Producing Masculinity》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

随机密码生成器
随机密码生成器

多种字符组合密码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具