I have a Spring Boot 1.4.0 based Project that uses Liquibase.
Is it possible to execute a Method AFTER liquibase finished?
Something like Bean Post Processor?
What i want to do is adding some data to my database when the application is started in development mode. In developement mode the application uses an in-memory h2 database, so liquibase has to create the tables before i can write my data.