I'm facing class loading problem with class loading in my skinny war packaged within ear.
Where there are also other ejb modules packaged. Some can be loaded via spring while some not.
Imagine following scenario:
someApp.ear
|- someEJBs1.jar
|- someEJBs2.jar
...
|- someEJBsX.jar
|- someWar.war
If I try from the someWar.war to access via spring some classes present in:
- someEJBs1.jar it works
- but for those in someEJBs2.jar I'm getting
java.lang.ClassNotFoundException.
No clue where the problem is.
My MANIFEST.MF doesn't contain any classpath information at all.
I was already thinking if there there any way to see during runtime (maybe during debugging) the classes loaded, or possibly the classpath provided for the particular war file?
I'm running in glassfish 3.1.1 (that is a requirement, no change on this one is possible).