--@GeneratedValue(strategy = GenerationType.IDENTITY) 生成auto_increment主键,仅用于支持自增字段数据库
--@GeneratedValue默认主键生成策略为native,网上查的Hibernate中identity是MySQL对应的自增、sequence对应oracle的自增序列
--Springboot2.0,Hibernate创建的表默认myisam,需要innodb可通过spring.jpa.database-platform: org.hibernate.dialect.MySQL5InnoDBDialect 设置。
--@GeneratedValue默认主键生成策略为native,网上查的Hibernate中identity是MySQL对应的自增、sequence对应oracle的自增序列
--Springboot2.0,Hibernate创建的表默认myisam,需要innodb可通过spring.jpa.database-platform: org.hibernate.dialect.MySQL5InnoDBDialect 设置。
2018-03-24
最新回答 / 慕UI5017193
https://jingyan.baidu.com/article/36d6ed1f62e9821bcf4883af.html看这个你就知道自己怎么设置智能提示了
2018-03-24