佛了

mysql分离 + springboot + eurake

1
2
3
4
5
6
原因是 配置远程数据库时,springboot 没有创建表,自己手动建了hibernate sequence后就会报这个错。
表现为插入数据失败,error "could not read a hi value - you need to populate the table".

解决方法是对nextval设置初始值,stackoverflow的另一种方案是
改掉注释
@GeneratedValue(strategy = GenerationType.AUTO)改为@GeneratedValue(strategy = GenerationType.IDENTITY)