I want to discover all xml files that my ClassLoader is aware of using a wildcard pattern. Is there any way to do this?
Well, it is not from within Java, but
jar -tvf jarname | grep xml$
will show you all the XMLs in the jar.