Spring:搜索内jar中的资源
我有一个这样的战争结构: Some.war
-WEB-INF
--lib
---library.jar
----一些.xsd
----some2.xsd
我想获取library.jar中的所有xsd文件,但spring不想搜索它。
ContextLoaderListener.getCurrentWebApplicationContext()
.getResources("classpath*:**/*.xsd")
结果为空。我还尝试过:classpath:**/*.xsd
、**/*.xsd
。
我如何使用“ant”模板(*/.xsd)获取jar中的所有xsd文件?
I have a this war structure:
Some.war
-WEB-INF
--lib
---library.jar
----some.xsd
----some2.xsd
And i want to get all xsd files in library.jar, but spring don't want to search it.
ContextLoaderListener.getCurrentWebApplicationContext()
.getResources("classpath*:**/*.xsd")
result is empty. I also tried: classpath:**/*.xsd
, **/*.xsd
.
How i can get all xsd files in jar using "ant" template (*/.xsd)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案就在 Spring 文档中:
The answer lies in the Spring docs: