<pre><code><!-- spring 配置-->
<bean id="systemProperties" class="org.springframework.beans.factory.config.Propertiesfactorybean">
<property name="locations">
注入到bean对象
@Component
public class ResourceBean {
private Properties systemProperties;
@autowired
public ResourceBean(Properties systemProperties){
this.systemProperties = systemProperties;
}
}