<!-- 将多个配置文件读取到容器中,交给Spring管理 -->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<!-- 这里支持多种寻址方式:classpath和file -->
<value>classpath*:db.properties</value>
<!-- 推荐使用file的方式引入,这样可以将配置和代码分离 -->
</list>
</property>
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<!-- 这里支持多种寻址方式:classpath和file -->
<value>classpath*:db.properties</value>
<!-- 推荐使用file的方式引入,这样可以将配置和代码分离 -->
</list>
</property>
</bean>
这里有个疑问,推荐的方式引入会报错,比如引入的配置文件中有30这种数字,读取的时候会认为是String类型,走过,路过的朋友,谁能回答下老铁的疑问?