Liquibase failed to start because no changelog could be found at:

Viewed 32

I have a basic Rest program in which I'm using Liquibase. Was about to run it and this appears on the run: enter image description here

Not pretty sure on what to do to solve it

1 Answers

Assuming this is a spring boot application, the default path for liquibase change log file can be overriden in application.yml file, following is one such example -

spring: liquibase: change-log: classpath:/liquibase/changelog-master.xml

Related