1、配置加载:init.properties
<bean id="propertyConfigurer" class="cn.biznest.core.base.utils.PropertyPlaceholderConfigurerExt">
<property name="locations">
<list>
<value>classpath*:init.properties</value>
</list>
</property>
</bean>
说明:class是读取该文件的类,bean生成一个id为propertyConfigurer的容器,
这个容器的方法等同于class这个类中的方法,也可以理解为class中的是名字,id中的是别名<bean>下面有<property>等属性<property>
下有<props>、<ref>、<list>等属性
2、加载其他xml文件
<import resource="classpath*:ApplicationContext-FreeMarker.xml" />
<import resource="classpath*:applicationContext-shiro.xml" />
<import resource="classpath*:spring-druid.xml" />
本文介绍了Spring框架中如何通过XML文件进行配置,包括加载配置文件init.properties的方法及加载其他Spring配置文件如ApplicationContext-FreeMarker.xml、applicationContext-shiro.xml和spring-druid.xml的过程。
3288

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



