路径表达式用法

一、什么是路径表达式

1.什么是路径表达式
  • 加载xml文件时传入的特殊格式的字符串
2. 路径表达式的作用
  • 路径匹配表达式加载某个位置下的配置文件
3.路径表达式classpath: 含义:
  • 加载当前类路径下的xml文件 ,例如classpath:applicationContext.xml
  • 当前类路径是指 target目录下的classes

二、路径表达式的用法

1.加载单个配置文件
// 创建IOC容器并根据配置文件创建对象
ApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
2.加载多个配置文件
String[] configLocations = new String[]{
    "classpath:applicationContext.xml", 
    "classpath:applicationContext-1.xml"
 };
 ApplicationContext context = new ClassPathXmlApplicationContext(configLocations);
 
3.其它路径的表达式
表达式实例说明
classpath:config.xml扫描classpath根路径(不含jar)下的config.xml
classpath:com/learn/config.xml扫描classpath下(不含jar)com.learn包中的config.xml
classpath*:com/learn/config.xml扫描classpath下(包含jar)com.learn包中的config.xml
classpath:config-*.xml扫描classpath根路径下所有以config-开头的xml文件
classpath:com/**/config.xml扫描com包下(包含任何子包)的config.xml
file:c://config.xml扫描c:盘根路径下的config.xml
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值