`
san_yun
  • 浏览: 2685389 次
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

PathMatchingResourcePatternResolver

 
阅读更多
PathMatchingResourcePatternResolver是一个通配符的Resource查找器,包括:
/WEB-INF/*-context.xml
com/mycompany/**/applicationContext.xml
file:C:/some/path/*-context.xml
classpath:com/mycompany/**/applicationContext.xml

如果要处理一个目录下的文件就可以下面的代码:
    ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
        
        Resource[] resources = resolver.getResources("classpath:com/you/atlas/webx/context/*.class");
        
        System.out.println(resources[0].getURL());
echo:file:/home/work/branche/springtest/target/classes/com/you/atlas/webx/context/WebxContextLoader.class



spring SqlMapClientFactoryBean提供了一个setMappingLocations方法支持“/myApp/*-map.xml”,不用哭逼的增加一个sqlpmap就在xml文件加一条啊!
分享到:
评论
1 楼 href2008 2015-07-27  
你好,问下,同样的location地址。为什么main执行可以读出来。但是打包到tomcat下就不行了?是为什么呢?

相关推荐

Global site tag (gtag.js) - Google Analytics