I am facing a problem in my application that I cannot list all the resource from a class path entry.
Enumeration<URL> resources = Thread.currentThread().getContextClassLoader().getResources("src/main/resources/*.*");
System.out.println(resources);
while (resources.hasMoreElements()) {
URL url = resources.nextElement();
//Here I am getting an empty URL list.Please help.
System.out.println(url);
}
The are couple of problems:
src/main/resources/*.*
is not valid syntax forClassLoader.getResources()
src/main/resources
src/main/resources
directory?