I generated a Microservice Application with JHipster 5.0.1 (based on Spring Boot 2). I am using memory based persistence H2 in dev mode. Have not changed the generated code and configuration in any way. Spring Boot is supposed to load and execute the src/main/resources/data.sql file automatically while starting. This does not work however, the files are not executed.
I am aware of what needs to be configured in Spring Boot to execute data.sql (and schema.sql) files. I have disabled auto-ddl:
spring.application.jpa.hibernate.auto-ddl=none
This question describes the same issue, but the actions taken there do not work.