org.hibernate.MappingException: could not instantiate id generator

在学习hibernate的时候java应用程序出现了错误提示:org.hibernate.MappingException: could not instantiate id generator

解决方案:

   打开hibernate的映射文件*.hbm.xml  将id元素中的子元素改为

  (注意:您自己的generator class的值可能不是sequence,但是没关系,照样改成native一般都能解决问题)

你可能感兴趣的:(Java)