Hibernate4.3 注解出错NoSuchMethodError

J2EE 码拜 9年前 (2015-10-16) 1091次浏览
刚学习到hibernate  用注解方式生成表 但每次用@Table( name = ” ??”)这种方式指定表名的时候就出错  

Exception in thread “main” java.lang.NoSuchMethodError: javax.persistence.Table.indexes()[Ljavax/persistence/Index;

at org.hibernate.cfg.annotations.EntityBinder.processComplementaryTableDefinitions(EntityBinder.java:914)

at org.hibernate.cfg.AnnotationBinder.bindClass(AnnotationBinder.java:716)

at org.hibernate.cfg.Configuration$MetadataSourceQueue.processAnnotatedClassesQueue(Configuration.java:3598)

at org.hibernate.cfg.Configuration$MetadataSourceQueue.processMetadata(Configuration.java:3552)

at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1358)

at org.hibernate.cfg.Configuration.generateDropSchemaScript(Configuration.java:939)

at org.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:188)

at org.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:156)

at com.zhj.test.TestT.main(TestT.java:20)

本人用的是Hibernate 4.3 

解决方案:40分
javax.persistence.Table.indexes()

意思是javax.persistence包下的Table类没有indexes方法,要么是你jar没导入,要么你jar包冲突


CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明Hibernate4.3 注解出错NoSuchMethodError
喜欢 (0)
[1034331897@qq.com]
分享 (0)