admin管理员组

文章数量:1295296

I recently migrated my project from Spring Boot 2.2.7 to 3.2.4 and started encountering several Liquibase errors, such as:

"Can't parse the changeset" "Can't alter the table" These errors did not occur with the previous version. I have tried using Liquibase 4.24.0, which is supposed to be compatible with Spring Boot 3, but the issues persist. There is no documentation mentioning any changes that could cause these errors.

Here are the dependencies I am using:

implementation(".liquibase:liquibase-core")
implementation(".mariadb.jdbc:mariadb-java-client")

Has anyone faced similar issues or can provide guidance on how to resolve these errors?

Additional Information:

The same schema and change sets were working fine with Spring Boot 2.2.7. I have ensured that Liquibase 4.24.0 is compatible with Spring Boot 3, but still no luck. Any help would be greatly appreciated!

本文标签: Liquibase Errors After Migrating from Spring Boot 227 to 324Stack Overflow