Hibernate-sequence doesn't exist

我尝试使用spring4.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

以上是 Hibernate-sequence doesn't exist 的全部内容, 来源链接: utcz.com/qa/406003.html

回到顶部