I'm using JCL in a simple manner, I think. I create a classloader and add() a bunch of jars.
Some of these jars have identically named resources. From this class loader I try getResources() expecting the enumeration to find all the resources. Unfortunately, I only get the first resource.
I debugged the code and it seems that every classloader only returns one resource through findResource(), I think..
Am I doing something really wrong ?