我的 context.xml 中有以下内容:
<bean id="myBean" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>file:${specific.dir}/file1.properties</value>
<value>file:${specific.dir}/file2.properties</value>
<value>file:${specific.dir}/file3.properties</value>
<value>file:${specific.dir}/file4.properties</value>
</list>
</property>
</bean>
我正在通过静态弹簧应用程序上下文在 POJO 中检索这个 bean,并且通过调试器这似乎确实有效。
无论如何,我是否可以检索列表中的四个值以及此 POJO 中的属性名称?
我的 staticSpringApplicationContext 如下:
public class StaticSpringApplicationContext implements ApplicationContextAware {
private static ApplicationContext CONTEXT;
public void setApplicationContext(ApplicationContext context) throws BeansException {
CONTEXT = context;
}
public static Object getBean(String beanName) {
return CONTEXT.getBean(beanName);
}
}
在我的 POJO 中遵循这个,我有:
StaticSpringApplicationContext.getBean("myBean");
非常感谢任何帮助或指导。我在 Spring 上遇到的麻烦比我愿意承认的要多。