I made a small application based on Spring Boot:
The application has simply one do
The default for spring.jpa.hibernate.ddl-auto is create-drop if you use an embedded database. You probably want it to be empty, or just validate (none might work as well but I think that's deprecated by hibernate).
spring.jpa.hibernate.ddl-auto
create-drop
validate
none