Spring Property


Spring 解析Property :

org.springframework.beans.factory.config.PropertyPlaceholderConfigurer

在applicationcontext.xml中配置需要的bean

<bean id="propertyutil"
 class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations" value="classpath:property.properties">
</bean>


然后就可以直接使用 property中的数据信息

${username}....


你可能感兴趣的:(java,spring,bean,xml)