I am developing a GWT application in Eclipse and use jdom2 to read some custom xml property files.
Following a recent update my application now fails with the above
The default JAXB implementation of WebLogic 12c causing the problem and you need to override the jaxb at the weblogic server startup. Add the below classpath to startWebLogic.cmd before echo CLASSPATH=%CLASSPATH%
SET CLASSPATH=C:\Oracle\Middleware\Oracle_Home\wlserver\modules\databinding.override.jar;%CLASSPATH%
Tow JARS are added to support weblogic 12c.