springboot liquibase 怎么回滚
时间: 2023-12-05 14:40:53 浏览: 238
springboot手动事务回滚的实现代码
以下是Spring Boot Liquibase回滚的步骤:
1. 确保在pom.xml文件中添加了Liquibase依赖项:
```xml
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
</dependency>
```
2. 在application.properties文件中配置Liquibase:
```properties
spring.liquibase.change-log=classpath:/liquibase/master.xml
```
3. 运行应用程序并应用Liquibase更改集。
4. 要回滚更改,请使用以下命令:
```shell
mvn liquibase:rollback -Dliquibase.rollbackCount=1
```
其中,`rollbackCount`参数指定要回滚的更改集数量。
阅读全文