j疑难杂症:java.lang.VerifyError: class org.hibernate.type.WrappedMaterializedBlobType overrides final method getReturnedClass.()Ljava/lang/Class;

问题:

java.lang.VerifyError: class org.hibernate.type.WrappedMaterializedBlobType overrides final method getReturnedClass.()Ljava/lang/Class;

原因:

hibernate-core 3.6.0以后hibernate-annotations 被整合到到hibernate-core这个包中,所以我的问题就是

hibernate-core-3.6.3.Final 和 hibernate-annotations-3.5.0-Final 冲突造成的。

解决:

从buildpath中remove掉hibernate-annotations-3.5.0-Final.jar,删除WEB-INF下 的classes文件夹的内容,重新build了下project,一切恢复正常。

原文地址:https://www.cnblogs.com/sl-shilong/p/3277206.html