本文主要是介绍使用SpringdataJpa出现 ‘Table 'XXX.hibernate_sequence' doesn't exist’,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'xxx.hibernate_sequence' doesn't exist
- 出现原因:
springboot 1.4.1.RELEASE
升级至2.0.5.RELEASE
时,spring-boot-starter-data-jpa使用了hibernate5 - 解决办法:
- application.properties:
spring.jpa.hibernate.use-new-id-generator-mappings=false
@GeneratedValue(strategy = GenerationType.IDENTITY)
- application.yml:如图
这篇关于使用SpringdataJpa出现 ‘Table 'XXX.hibernate_sequence' doesn't exist’的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!