Caused by: java.sql.SQLSyntaxErrorException: Table ‘sell.hibernate_sequence‘ doesn‘t exist

问题:数据库的主键生成策略是自动增长
解决:在domain实体类指明主键生成策略,保持数据库一致

@GeneratedValue(strategy = GenerationType.IDENTITY)

猜你喜欢

转载自blog.csdn.net/weixin_45636641/article/details/108975086
今日推荐