chaika_sv
chaika_sv

Reputation: 413

Liquibase change-log in Spring Boot

I'm trying to figure out how the project works. It uses Liquibase:

enter image description here

The problem is that the .yaml file is not in the classpath folder so it's not accessible. Error:

enter image description here

How to let Spring Boot know where is the change-log?

Upvotes: 0

Views: 2273

Answers (1)

Oleksandr Chalyi
Oleksandr Chalyi

Reputation: 86

Use property name as

spring.liquibase.changeLog

not

liquibase.changeLog

Upvotes: 1

Related Questions