<!--从配 properties 件读取配置信息-->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>WEB-INF/classes/config/core/spring/hibernate.properties</value>
<value>WEB-INF/classes/config/core/spring/jdbc.properties</value>
</list>
</property>
</bean>
<!-- 引入其他配置的语法 -->
<import resource="applicationContext-core-aop.xml"/>
<import resource="../../dev/spring/applicationContext-crm-mantis.xml"/>
<!-- i18n Resource文件bundles -->
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames">
<list>
<value>i18n/message</value>
</list>
</property>
</bean>
3255

被折叠的 条评论
为什么被折叠?



