spring 的 PropertyPlaceholderConfigurer读取的属性怎么访问 (java访问方式,不是xml中的占位符哦)
Posted struggle_beiJing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring 的 PropertyPlaceholderConfigurer读取的属性怎么访问 (java访问方式,不是xml中的占位符哦)相关的知识,希望对你有一定的参考价值。
<!-- 属性文件 -->
<bean id="configs" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>classpath:spring/jdbc.properties</value>
</list>
</property>
@Autowired
private Properties configs;
Object object2 = configs.get("jdbc.username");
System.err.println(object2);
以上是关于spring 的 PropertyPlaceholderConfigurer读取的属性怎么访问 (java访问方式,不是xml中的占位符哦)的主要内容,如果未能解决你的问题,请参考以下文章
学习笔记——Spring简介;Spring搭建步骤;Spring的特性;Spring中getBean三种方式;Spring中的标签