1. 程式人生 > >beans.xml引入.properties檔案的兩種方式

beans.xml引入.properties檔案的兩種方式

方法一:

<context:property-placeholder location="classpath:config.properties"/>

方法二:

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