You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If jackson-datatype-jdk8 is added to the classpath, the Glassfish integration test breaks with java.lang.VerifyError: Cannot inherit from final class. Please see server.log for more details. and
Glassfish bundles a rather old and incomplete version of Jackson. As a result, our sample app loads some Jackson classes from the war that's deployed and some from Glassfish itself. This mismatch of versions causes the VerifyError. We can avoid the problem by using a Glassfish-specific deployment descriptor to make the web app's class loader prefer its own classes over those available from its parent.
wilkinsona
changed the title
Adding jackson-datatype-jdk8 breaks Glassfish integration test
Adding jackson-datatype-jdk8 breaks app server integration tests
Jun 2, 2017
@nelavelli this issue is closed so I am not sure I understand what you're reporting here really. Regardless, if you have a question please join us on Gitter or ask on StackOvrerflow.
If
jackson-datatype-jdk8
is added to the classpath, the Glassfish integration test breaks withjava.lang.VerifyError: Cannot inherit from final class. Please see server.log for more details.
andThe text was updated successfully, but these errors were encountered: