java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > SpringBoot整合Liquibase

SpringBoot整合Liquibase的示例代码

作者:尛騩

本篇文章给大家介绍SpringBoot整合Liquibase的两种情况分析,看似整合问题很简单,但是很容易出错,下面小编给大家介绍下整合步骤,感兴趣的朋友跟随小编一起看看吧

SpringBoot整合Liquibase虽然不难但坑还是有一点的,主要集中在配置路径相关的地方,在此记录一下整合的步骤,方便以后自己再做整合时少走弯路,当然也希望能帮到大家~

整合有两种情况

  1. 在启动项目时自动执行脚本,若新添加了Liquibase脚本需要重启项目才能执行脚本
  2. 在不启动项目时也能通过插件或指令手动让它执行脚本

整合要么只整合1,要么1、2一起整合

只整合2不整合1的话,项目启动时会生成liquibase相关的bean时报错

整合1

引入Maven依赖

这里导入了Liquibase的包和连接MySQL数据库的包

<!-- https://mvnrepository.com/artifact/org.liquibase/liquibase-core -->
<dependency>
    <groupId>org.liquibase</groupId>
    <artifactId>liquibase-core</artifactId>
    <version>3.6.2</version>
</dependency>
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <scope>runtime</scope>
</dependency>

在SpringBoot配置文件中配置

配置中liquibase相关的只需要配置根changelog的位置,数据库相关配置liquibase会自己去拿datasource下面的,注意url需要加上时区serverTimezone

spring:
  datasource:
    username: root
    password: root
    url: jdbc:mysql://localhost:3306/test_database?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
  liquibase:
    change-log: classpath:/db/liquibaseChangeLogFile.xml

配置liquibaseChangeLogFile.xml

同样需要注意xml文件的路径,按照上述配置的话该文件在src/main/resources/db/liquibaseChangeLogFile.xml

<?xml version="1.0" encoding="utf-8"?>
<databaseChangeLog
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
    xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
                        http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd">
                        
<!--relativeToChangelogFile="true"表示根据该changeLog的相对路径寻找changeLog文件-->
    <includeAll path="changelog/" relativeToChangelogFile="true"/>
</databaseChangeLog>

配置changeLog.xml

<?xml version="1.0" encoding="utf-8"?>
<databaseChangeLog
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
        xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
                      http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd">
    <changeSet id="20201212-01-2344" author="RR">
        <createTable tableName="test_table">
            <column name="id" type="VARCHAR(32)" remarks="表ID">
                <constraints primaryKey="true"/>
            </column>
            <column name="user_name" type="VARCHAR(16)" remarks="用户名">
                <constraints nullable="false"/>
            <column name="age" type="TINYINT">
            <column name="create_date" type="TIMESTAMP" remarks="创建日期" defaultValueComputed="CURRENT_TIMESTAMP"/>
        </createTable>
    </changeSet>
    
</databaseChangeLog>

整合情况:

按照上面的流程配置完,在启动项目时,它就会执行未执行过的Lisquibase脚本了~

整合2

有时候想不启动或不重启项目时执行Liquibase脚本,此时就应该整合2

引入Maven插件

引入的插件版本和上面的依赖包的版本号保持一致,不过我也没有考究过不一致会怎样,有兴趣的小伙伴可以试试 ,不过不一致看得不会难受吗在这里的configuration标签中,配置好要读取的liquibase相关信息的配置文件,并且注意好路径

<build>
    <plugins>
        <plugin>
            <groupId>org.liquibase</groupId>
            <artifactId>liquibase-maven-plugin</artifactId>
            <version>3.6.2</version>
            <configuration>
                <propertyFile>src/main/resources/liquibase.properties</propertyFile>
                <!--配置参数,以禁用弹出的对话框,该对话框将确认非本地数据库上的迁移-->
                <promptOnNonLocalDatabase>false</promptOnNonLocalDatabase>
            </configuration>
        </plugin>
    </plugins>
</build>

配置Liquibase.properties

注意配置文件的路径应跟在配置Maven插件时声明的一致,即src/main/resources/liquibase.properties配置好如下的五个属性,注意url需要加上时区serverTimezone注意changeLogFile项的路径,它是一个相对路径,该配置会在下面展示

#配置都整合在yml配置文件里了,若想不启动时执行liquibase脚本该配置不能省!!!!
driver-class-name=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test_database?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
username=root
password=root
changeLogFile=db/liquibaseChangeLogFile.xml

配置liquibaseChangeLogFile.xml

在整合1的时候就已经配置好了~

配置changeLog.xml

按照上述的配置的话,changeLog文件应该放在src/main/resources/db/changelog/下面再写一个liquibase脚本

<?xml version="1.0" encoding="utf-8"?>
<databaseChangeLog
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
        xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
                      http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd">
    <changeSet id="20201213-01-1525" author="RR">
        <insert tableName="test_table">
            <column name="id" value="34f0186001df406fbb373845c579e6a6"/>
            <column name="user_name" value="小明"/>
            <column name="age" value="18"/>
        </insert>
    </changeSet>
</databaseChangeLog>

测试整合情况

补充:下面给大家分享一段示例代码讲解下spring boot 整合 liquibase

1.添加依赖

<dependency>
   <groupId>org.liquibase</groupId>
   <artifactId>liquibase-core</artifactId>
   <version>3.8.3</version>
</dependency>
<dependency>
   <groupId>org.liquibase</groupId>
   <artifactId>liquibase-maven-plugin</artifactId>
   <version>3.8.3</version>
</dependency>
<plugin>
   <groupId>org.liquibase</groupId>
   <artifactId>liquibase-maven-plugin</artifactId>
   <version>3.8.3</version>
   <configuration>
      <propertyFile>src/main/resources/db/liquibase.properties</propertyFile>
   </configuration>
</plugin>

2.创建liquibase.properties 内容如下

url=jdbc:postgresql://127.0.0.1:5432/ems_factorymodeldb
username=name
password=password
driver=org.postgresql.Driver
outputChangeLogFile=src/main/resources/liquibase-outputChangeLog.xml

3.创建 db.changelog-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-3.8.xsd">
    <!--  版本更新迭代  -->
    <include file="classpath:db/changelogs/liquibase-changeLog.xml" relativeToChangelogFile="false"></include>
    <!--  现有数据  -->
    <includeAll path="./currentdatas" relativeToChangelogFile="true"/>
    <!--  数据初始化 脚本  -->
    <!-- <includeAll path="./defaultdatas" relativeToChangelogFile="true"/>-->
</databaseChangeLog>

4.增加配置

# liquibase
spring.liquibase.enabled=true
spring.liquibase.change-log=classpath:db/db.changelog-master.xml

到此这篇关于SpringBoot整合Liquibase的文章就介绍到这了,更多相关SpringBoot整合Liquibase内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文