I have a SpringBoot 2.0.1.RELEASE application using spring data / jpa
org.sprin
With the generation GenerationType.AUTO hibernate will look for the default hibernate_sequence table , so change generation to IDENTITY as below :
GenerationType.AUTO
hibernate_sequence
IDENTITY
@Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id;