When you are configuring liquibase with spring boot for first time ,you may face this circular reference exception in your spring boot application.
I will suggest 2 working solutions for this problem
- Include below property in application property- liquibase.errorOnCircularIncludeAll: false . When this field set to false . Even circular reference detected in your change logs it wont return any exception.
- For another method , try to use different paths for master and child change log files as mentioned in the below tutorial
Leave a Reply