java – @Autowired和PropertyPlaceholder

前端之家收集整理的这篇文章主要介绍了java – @Autowired和PropertyPlaceholder前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

是否可以通过@Autowired将PropertyPlaceholder中的属性添加到bean中?我无法在xml-context-config中注入它,因为bean以这种方式加载:

最佳答案
在3.0版本(我认为来自里程碑3),您可以使用@Value(“${foo.bar}”)来访问PropertyPlaceholder中的属性.
原文链接:https://www.f2er.com/spring/431887.html

猜你在找的Spring相关文章