I need to load a JAR file as a resource, say X.JAR, located within the LIB directory of an EAR, where the call to load originates from a class within the jar file.
I understand this is a very weird thing to do, but that's just the way it is with old code.
I have tried this:
getProtectionDomain().getCodeSource().getLocation();
and the getResource() tricks but they all return a location that does not physically exist. I use the management console of JBoss to deploy the EAR file, I do not place it exploded into the deployment folder -- unfortunately this step cannot be changed.