I have a web application that uses JAXB 2. When deployed on an Oracle 10g app server I get errors as soon as I try to marshal an XML file. It turns out that Oracle includes JAXB 1 in a jar sneakily renamed "xml.jar". Does anyone know how I can force my webapp to use the version of the jaxb jars that I deployed in web-inf/lib over that which Oracle has forced into the classpath, ideally through configuration rather than having to mess about with classloaders in my code.
|
|
I assume you use the former BEA Weblogic Server? You can add a weblogic.xml file to your WEB-INF, looking like this:
(in reply to the comment, I don't have enough reputation yet :-)) Indeed, DLL hell because it is "all or nothing". There seems to be another, more conditional way, described here. Haven't tried that one myself though... |
||||
|
|
|
If you are still using Oracle's OC4J then include their orion-application.xml in your EAR's META-INF. It should look something like...
...with the package you want skipped. |
||
|
|
|
|
Use a different JVM than your Oracle instance and make sure that their libraries are not in your classpath. |
||
|
