I have this military 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 doesn't want to look for it.
ContextLoaderListener.getCurrentWebApplicationContext()
.getResources("classpath*:**
the result is empty. I also tried: classpath:**/*.xsd, **/*.xsd.
How can I get all xsd files in the bank using the ant (* /. Xsd) template?
source
share