I have a ear deployment which contain several war. A common library is needed by these wars so a custom module is created. This library would somehow load the classes in the war (using class.forName()
may be)).
However, it seems that the module is not able to get access to the classes in the war and keep throwing ClassNotFoundException
upon deployment.
Is there any configuration needed to expose the classes to be accessed by the module? I tried with those export=true
settings on the module but get no luck with it.
The library I needed is DWR with spring FYI.