Thay đổi spring.jpa.properties.hibernate.ddl-auto=create
thành spring.jpa.hibernate.ddl-auto=create
trong application.properties
tệp và thay đổi GeneratedValue
chú thích trong Example
thực thể như bên dưới:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
FYI:Bạn cũng có thể sử dụng thư viện Liquibase hoặc Flyway.