溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot如何整合Liquibase

發(fā)布時間:2022-02-10 14:29:03 來源:億速云 閱讀:302 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹了SpringBoot如何整合Liquibase,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

整合有兩種情況

  1. 在啟動項目時自動執(zhí)行腳本,若新添加了Liquibase腳本需要重啟項目才能執(zhí)行腳本

  2. 在不啟動項目時也能通過插件或指令手動讓它執(zhí)行腳本

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

只整合2不整合1的話,項目啟動時會生成liquibase相關(guān)的bean時報錯

整合1

引入Maven依賴

這里導入了Liquibase的包和連接MySQL數(shù)據(jù)庫的包

<!-- 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配置文件中配置

配置中l(wèi)iquibase相關(guān)的只需要配置根changelog的位置,數(shù)據(jù)庫相關(guān)配置liquibase會自己去拿datasource下面的,注意url需要加上時區(qū)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"表示根據(jù)該changeLog的相對路徑尋找changeLog文件-->
    <includeAll path="changelog/" relativeToChangelogFile="true"/>
</databaseChangeLog>

配置changeLog.xml

  • 按照上述的配置的話,changeLog文件應該放在src/main/resources/db/changelog/

  • 下面簡單寫一個changelog來測試

<?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="創(chuàng)建日期" defaultValueComputed="CURRENT_TIMESTAMP"/>
        </createTable>
    </changeSet>
    
</databaseChangeLog>

整合情況:

按照上面的流程配置完,在啟動項目時,它就會執(zhí)行未執(zhí)行過的Lisquibase腳本了~

整合2

有時候想不啟動或不重啟項目時執(zhí)行Liquibase腳本,此時就應該整合2

引入Maven插件

引入的插件版本和上面的依賴包的版本號保持一致,不過我也沒有考究過不一致會怎樣,有興趣的小伙伴可以試試 ,不過不一致看得不會難受嗎在這里的configuration標簽中,配置好要讀取的liquibase相關(guān)信息的配置文件,并且注意好路徑

<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>
                <!--配置參數(shù),以禁用彈出的對話框,該對話框?qū)⒋_認非本地數(shù)據(jù)庫上的遷移-->
                <promptOnNonLocalDatabase>false</promptOnNonLocalDatabase>
            </configuration>
        </plugin>
    </plugins>
</build>

配置Liquibase.properties

注意配置文件的路徑應跟在配置Maven插件時聲明的一致,即src/main/resources/liquibase.properties配置好如下的五個屬性,注意url需要加上時區(qū)serverTimezone注意changeLogFile項的路徑,它是一個相對路徑,該配置會在下面展示

#配置都整合在yml配置文件里了,若想不啟動時執(zhí)行l(wèi)iquibase腳本該配置不能?。。。。?
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的時候就已經(jīng)配置好了~

配置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>

測試整合情況

  • 先mvn clean和install一下!!! 否則不能找到我們寫的xml文件

  • 在maven插件中找到liquibase:update,雙擊即可~

補充:下面給大家分享一段示例代碼講解下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.創(chuàng)建liquibase.properties 內(nèi)容如下

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.創(chuàng)建 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>
    <!--  現(xiàn)有數(shù)據(jù)  -->
    <includeAll path="./currentdatas" relativeToChangelogFile="true"/>
    <!--  數(shù)據(jù)初始化 腳本  -->
    <!-- <includeAll path="./defaultdatas" relativeToChangelogFile="true"/>-->
</databaseChangeLog>

4.增加配置

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

感謝你能夠認真閱讀完這篇文章,希望小編分享的“SpringBoot如何整合Liquibase”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI