Liquibase结合SpringBoot使用实现数据库管理

ops/2024/12/19 6:42:07/

Liquibase概述

Liquibase 是一个开源的数据库变更管理工具,用于跟踪、版本化、和管理数据库结构(如表、字段、索引等)的变更。它的目的是使数据库变更的过程更加透明、可控制、自动化,避免开发团队在多个环境中手动执行相同的数据库变更脚本。

Liquibase 支持多种数据库(MySQL、PostgreSQL、Oracle、SQL Server、H2 等),并能够通过 XML、YAML、JSON 或 SQL 文件来定义数据库变更。

主要特点

  • 版本控制:将数据库变更与代码同步管理,避免手动更改数据库结构。
  • 自动化迁移:在不同环境(开发、测试、生产等)中自动应用数据库变更。
  • 可回滚性:Liquibase 提供了回滚机制,可以回到之前的数据库版本。
  • 支持多种格式:支持 XML、YAML、JSON 等格式来描述变更。
  • 集成方便:Liquibase 可以集成到 CI/CD 流程中,或者与 Spring Boot 等框架配合使用,轻松管理数据库版本。

工作机制

Liquibase 使用一个名为 changelog 的文件来描述数据库的所有变更。这个文件记录了所有执行过的数据库变更集合(changeSets)。每个 changeSet 都有一个唯一的 ID 和作者标识,用来追踪该变更。

Liquibase 会通过 changelog 文件自动管理数据库的版本和变更。它会在每次应用变更时,通过一个 DATABASECHANGELOG 表记录哪些变更已经应用过了

与SpringBoot结合使用

由于我这边项目上使用的是xml方式,就用xml方式进行示例,其余方式的方法,大家感兴趣的可以自行前往官网查看文档。

传送门:Liquibase Documentation

引入依赖

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>org.example</groupId><artifactId>demo</artifactId><version>1.0-SNAPSHOT</version><packaging>jar</packaging><name>demo</name><url>http://maven.apache.org</url><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding></properties><dependencyManagement><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-dependencies</artifactId><version>2.7.9</version>  <type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement><dependencies><dependency><groupId>org.liquibase</groupId><artifactId>liquibase-core</artifactId><version>4.21.0</version></dependency><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>8.0.29</version> <!-- 或者根据需要使用适合的版本 --></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-jpa</artifactId></dependency></dependencies><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>3.8.1</version> <configuration><source>17</source> <target>17</target> </configuration></plugin></plugins></build>
</project>

配置文件

spring:datasource:url: jdbc:mysql://localhost:3306/test?serverTimezone=UTC&useSSL=falseusername: rootpassword: 123456driver-class-name: com.mysql.cj.jdbc.Driverhikari:maximum-pool-size: 10liquibase:change-log: classpath:liquibase/platform/changeSet.xmlenabled: true

创建 Liquibase 变更集文件

<?xml version="1.0" encoding="UTF-8"?><databaseChangeLogxmlns="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-3.1.xsd"><include file="liquibase/platform/change/change01.xml"/>
</databaseChangeLog>

具体的变更集文件

<?xml version="1.0" encoding="UTF-8"?><databaseChangeLogxmlns="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-3.1.xsd"><changeSet id="1" author="bob"><createTable tableName="department"><column name="id" type="int"><constraints primaryKey="true" nullable="false"/></column><column name="name" type="varchar(50)"><constraints nullable="false"/></column><column name="active" type="boolean" defaultValueBoolean="true"/></createTable></changeSet></databaseChangeLog>

常用命令

  • liquibase update: 应用所有未执行的数据库变更。
  • liquibase rollback: 回滚数据库到指定的 changeSet 或版本。
  • liquibase status: 查看当前数据库的变更状态。
  • liquibase generateChangeLog: 根据现有数据库生成初始的 changeLog 文件。

总结

Liquibase 是一个强大的数据库管理工具,它帮助你通过自动化管理数据库的变更、版本控制、和回滚,简化了开发中的数据库迁移工作。通过在 Spring Boot 中集成 Liquibase,可以更高效地管理数据库结构和版本,确保开发团队的协作更加流畅。在项目中,Liquibase 可以和 Git 等版本控制工具配合使用,确保数据库结构变更的透明性和可追溯性。


http://www.ppmy.cn/ops/143106.html

相关文章

Centos7 部署CMake3.24

移除旧版本的CMake&#xff1a; sudo yum remove cmake 下载最新版本的CMake源代码&#xff1a; wget https://github.com/Kitware/CMake/releases/download/v3.24.0/cmake-3.24.0.tar.gz 解压源代码&#xff1a; tar -zxvf cmake-3.24.0.tar.gz 进入解压后的目录&#xff1…

计算机网络 | 2.物理层

物理层内容全部为通信原理的内容 1.物理层的基本概念 物理层解决如何在连接各种计算机的传输媒体上传输数据比特流&#xff0c; 而不是指具体的传输媒体。 物理层的主要任务描述为&#xff1a;确定与传输媒体的接口的一些特性。 机械特性&#xff1a;例接口特性形状、大小、…

WPF+MVVM案例实战与特效(四十)- 一个动态流水边框的实现

文章目录 1、运行效果2、案例实现1、PointAnimationUsingKeyFrames 关键帧动画2、矩形流水边框案例2、运行效果3、关键技术点3、案例拓展:其他形状实现1、圆形流水边框2、心形流水边3、完整页面代码4、运行效果5、总结1、运行效果 2、案例实现 1、PointAnimationUsingKeyFram…

电脑文档损坏:原因剖析和修复方法

在使用电脑的过程中&#xff0c;许多用户可能会遇到文档突然提示损坏、无法打开的情况。这种情况的发生往往让人感到困惑&#xff0c;特别是当并未进行任何明显错误操作时。以下是一些常见的原因以及应对方法。 一、文档损坏的常见原因 1、非人为的异常操作&#xff1a; 在编…

linux 内核数据包处理中的一些坑和建议

1、获取IP头部 iph ip_hdr(skb); struct sk_buff { ...... sk_buff_data_t transport_header; /* Transport layer header */ sk_buff_data_t network_header; /* Network layer header */ sk_buff_data_t mac_header; /* Link layer header */ ...... } 1&#xff0…

Redis篇--数据结构篇8--Redis数据结构架构篇(全局键空间,key存储结构,值存储结构,对象头)

Redis是一个高效的内存数据库&#xff0c;它的内部实现非常精巧&#xff0c;使用了多种数据结构来优化不同场景下的性能。 1、Redis的键&#xff08;Key&#xff09;存储结构 在Redis中&#xff0c;所有的键&#xff08;Key&#xff09;都是通过字典&#xff08;Dictionary&a…

Springboot3.x配置类(Configuration)和单元测试

配置类在Spring Boot框架中扮演着关键角色&#xff0c;它使开发者能够利用Java代码定义Bean、设定属性及调整其他Spring相关设置&#xff0c;取代了早期版本中依赖的XML配置文件。 集中化管理&#xff1a;借助Configuration注解&#xff0c;Spring Boot让用户能在一个或几个配…

电商环境下的财务ERP系统架构

先介绍一下自己的工作经历&#xff0c;2002年开始进入ERP实施行业&#xff0c;专注于O记EBS系统&#xff0c;正好赶上中国经济和信息化高度发展的阶段&#xff0c;先后实施过很多大国企和民企的大型ERP项目&#xff0c;在实施过程中逐渐对ERP系统的架构、模块设计有更深入的认识…