spring源码含有通配符路径解析一

spring源码含有通配符路径解析一

ID:6382203

大小:43.26 KB

页数:13页

时间:2018-01-12

spring源码含有通配符路径解析一_第1页
spring源码含有通配符路径解析一_第2页
spring源码含有通配符路径解析一_第3页
spring源码含有通配符路径解析一_第4页
spring源码含有通配符路径解析一_第5页
资源描述:

《spring源码含有通配符路径解析一》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、如果路径包含通配符(?,*,**)spring是怎么处理的?如果是以classpath*开头的又是如何呢?先测试分析包含通配符(?)的。1./** 2. * 测试包含通配符:*,?的路径 3. * 

D:\workspace-home\spring-custom\src\main\resources\spring\ap?-context.xml

 4. * 通过读取配置文件失败的情况,因为此时Spring不支持\路径的通配符解析 5. *  6. * @author lihzh 7. * @date 2012-

2、5-5 上午10:53:53 8. */ 9.@Test 10.public void testAntStylePathFail() { 11.    String pathOne = "D:\workspace-home\spring-custom\src\main\resources\spring\ap?-context.xml"; 12.    ApplicationContext appContext = new FileSystemXmlApplicationContext(pathOne); 13.    as

3、sertNotNull(appContext); 14.    VeryCommonBean bean = null; 15.    try { 16.        bean = appContext.getBean(VeryCommonBean.class); 17.        fail("Should not find the [VeryCommonBean]."); 18.    } catch (NoSuchBeanDefinitionException e) { 19.    } 20.    assertNull(be

4、an); 21.} 正如测试用例所写,实际是找不到该Bean的。这又是为什么?Spring不是支持通配符吗?FileSystemXmlApplicationContext的注释里也提到了通配符的情况:1.* 

The config location defaults can be overridden via {@link #getConfigLocations}, 2.* Config locations can either denote concrete files like "/myfiles/context.xml" 3.

5、* or Ant-style patterns like "/myfiles/*-context.xml" (see the 4.* {@link org.springframework.util.AntPathMatcher} javadoc for pattern details).  从代码中寻找答案。回到上回的else分支中,因为包含通配符,所以进入第一个子分支。1./** 家用吸氧机价格,家用吸氧机1.     * Find all resources that match the given location pattern

6、 via the 2.     * Ant-style PathMatcher. Supports resources in jar files and zip files 3.     * and in the file system. 4.     * @param locationPattern the location pattern to match 5.     * @return the result as Resource array 6.     * @throws IOException in case of I/O

7、 errors 7.     * @see #doFindPathMatchingJarResources 8.     * @see #doFindPathMatchingFileResources 9.     * @see org.springframework.util.PathMatcher 10.     */ 11.    protected Resource[] findPathMatchingResources(String locationPattern) throws IOException { 12.      

8、  String rootDirPath = determineRootDir(locationPattern); 13.        String subPattern = locationPatter

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。