Wednesday, June 27, 2012

weblogic jar confliction

If the application classpath is conflicting with weblogic classpath, for example, different version of xml parser, the easiest way to solve it is to set <prefer-web-inf-classes>to true in weblogic.xml

<wls:container-descriptor>
    <wls:prefer-web-inf-classes>true</wls:prefer-web-inf-classes>
</wls:container-descriptor>

No comments:

Post a Comment