classpath 和 classpath* 区别:classpath:只会到你指定的class路径中查找找文件;classpath*:不仅包含class路径,还包括jar文件中(class路径)进行查找.
举个简单的例子,在我的web.xml中是这么定义的:classpath*:META-INF/spring/application-context.xml那么在META-INF/spring这个文件夹底下的所有application-context.xml都会被加载到上下文中,这些包括META-INF/spring文件夹底下的 application-context.xml,META-INF/spring的子文件夹的application-context.xml以及jar中的application-context.xml。
如果我在web.xml中定义的是:classpath:META-INF/spring/application-context.xml那么只有META-INF/spring底下的application-context.xml会被加载到上下文中。
比如现在要加在一个jar包中的一些bean,然后我们想当中有一部分内容是需要覆盖原来bean的内容,那么我们可以这样写
(假设jar包配置文件中的配置是在springjdbc当中)
那么在我们的项目当中可以这样写:
<import resource="classpath*:springjdbc/applicationContext*.xml"/>
<context:property-override/>
此时我们只需要Import文件即可,并将可以覆盖的内容进行覆盖
此外例如properties的文件可以使用
<!-- 定义受环境影响易变的变量 -->
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
<property name="ignoreResourceNotFound" value="true" />
<property name="locations">
<list>
<value>classpath*:/jdbc.properties</value>
</list>
</property>
</bean>