我尝试使用 spring 4.2 版本在我的项目中将 hibernate 从 4 升级到 5。这次升级后,当我调用更新方法时,我在堆栈跟踪中发现了以下错误。

10:53:32,185 ERROR TableStructure:149 - could not read a hi value
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'test.hibernate_sequence' doesn't exist

我用注释更改了自动递增的 Id
@GeneratedValue(strategy=GenerationType.AUTO)

错误仍然存​​在。

最佳答案

你也可以把:

@GeneratedValue(strategy = GenerationType.IDENTITY)

并让 DateBase 管理主键的增量:
AUTO_INCREMENT PRIMARY KEY

关于java - hibernate 序列不存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32968527/

10-12 23:05