I have a big problem with Hibernate (use with seam) on weblogic 10.3.
When I publish my application, I get this error:
java.lang.NoSuchMethodExceptio
If you happen to hit this issue on Weblogic Server, I solved this problem on Weblogic 10.3.0.0 with placing the package org.hibernate
to prefer-application-packages
at weblogic-application.xml
in the EAR:
org.hibernate.*
With a properly built application this will prevent Weblogic Server loading the older, conflicting library from the server's classpath and make it work as expected.