xml 配置中 classpath: 与 classpath*: 的区别

xml 配置中 classpath: 与 classpath*: 的区别

首先 classpath 指的是WEB-INF文件夹下的classes目录
classpath: 和 classpath*: 的区别:

  • classpath: 只会到你指定的class路径中查找文件
  • classpath*: 不仅包含class路径,还包括jar文件中(class路径)进行查找
举个简单的例子

如果在 web.xml 中是这么定义的:classpath*:/spring/application-context.xml

那么在 spring 这个文件夹底下的所有 application-context.xml 都会被加载到上下文中,这些包括 spring 文件夹底下的 application-context.xml,spring的子文件夹的 application-context.xml 以及 jar 中的 application-context.xml

如果在 web.xml 中是这么定义的:classpath:/spring/application-context.xml

那么只有 spring 底下的 application-context.xml 会被加载到上下文中

你可能感兴趣的:(java)