如何解决liquibase使用弹簧靴回滚
我有一个Spring Boot应用程序(v2.3.3),其中包含Liquidbase工具来创建我的表并对其进行初始化。 当我启动spring boos时,它工作正常,创建表并使用sql脚本和Liquidbase配置插入数据,如下所示:
application.yml:
spring:
liquibase:
change-log: classpath:db/db.master.xml
src / main / resources / db:db.master.xml
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<includeAll path="scripts/" relativetochangelogFile="true"/>`enter code here`
</databaseChangeLog>
src / main / resources / db / script /
假设我要回滚002.insertDataTableAudit.sql,是否可以回滚insertDataTableAudit 当我启动Spring Boot应用程序时?
我知道可以通过maven来完成:mvn liquibase:rollback
,但是使用Spring Boot是否可以实现相同的目的?
预先感谢
解决方法
我认为开箱即用的春季启动功能没有这种功能。 但是,您可以轻松创建该功能:
final Database database = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(new JdbcConnection(connection));
final Liquibase liquibase = new Liquibase("changelogpath",new CompositeResourceAccessor(new ClassLoaderResourceAccessor(),new FileSystemResourceAccessor()),database);
liquibase.rollback("TAG",(String) null);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。