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

<context:component-scan base-package="..."/>

最佳答案

在 Spring 3.0(我认为从里程碑3开始)中,您可以使用@Value(“$ {foo.bar}”)从PropertyPlaceholder访问属性。

08-06 08:54