LiquiBase
是一個用於數據庫重構和遷移的開源工具,經過日誌文件的形式記錄數據庫的變動,而後執行日誌文件中的修改,將數據庫更新或回滾到一致的狀態。它的目標是提供一種數據庫類型無關的解決方案,經過執行schema類型的文件來達到遷移。其有點主要有如下:html
liquibase 官方文檔地址:www.liquibase.org/documentati…java
先在 pom 文件裏引入依賴spring
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
</dependency>
複製代碼
在代碼中新建一個 LiquibaseConfig
類,用於配置 Liquibase
,指定配置文件的位置。sql
import javax.sql.DataSource;
import liquibase.integration.spring.SpringLiquibase;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class LiquibaseConfig {
@Bean
public SpringLiquibase liquibase(DataSource dataSource) {
SpringLiquibase liquibase = new SpringLiquibase();
liquibase.setDataSource(dataSource);
//指定changelog的位置,這裏使用的一個master文件引用其餘文件的方式
liquibase.setChangeLog("classpath:liquibase/master.xml");
liquibase.setContexts("development,test,production");
liquibase.setShouldRun(true);
return liquibase;
}
}
複製代碼
目錄結構:數據庫
src/main/resources
下新建一個文件夾:liquibase
,用來存放跟 liquibase
相關的文件。bash
而後在 liquibase
文件夾下新建 master.xml
做爲主文件。工具
<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.1.xsd">
<includeAll path="liquibase/changelogs/" relativeToChangelogFile="false"/>
</databaseChangeLog>
複製代碼
includeAll
標籤能夠把一個文件夾下的全部 changelog 都加載進來。若是單個加載能夠用 include
。ui
includeAll
標籤裏有兩個屬性:path
和 relativeToChangelogFile
。url
Attribute | Description |
---|---|
file | Name of the file to import required |
relativeToChangelogFile | Is the file path relative to the root changelog file rather than to the classpath. Defaults to "false" since 1.9 |
path
(在 include 標籤裏是 file):指定要加載的文件或文件夾位置spa
relativeToChangelogFile
:文件位置的路徑是否相對於 root changelog 是相對路徑,默認 false,即相對於 classpath 是相對路徑。
另在 liquibase
文件夾下新建 changelogs
文件夾用來存放 changelog。
這裏新建一個 changelog-1.0.xml
<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.1.xsd">
<changeSet id="20190713-01" author="solo">
<createTable tableName="project_info">
<column name="project_id" type="varchar(64)" encoding="utf8" remarks="項目id">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="project_name" type="varchar(255)" encoding="utf8" remarks="項目名字"/>
<column name="project_difficulty" type="float" encoding="utf8" remarks="項目難度"/>
<column name="category_id" type="varchar(64)" encoding="utf8" remarks="項目類型類目編號"/>
<column name="project_status" type="int(11)" encoding="utf8" remarks="項目狀態, 0招募中,1 進行中,2已完成,3失敗,4延期,5刪除"/>
<column name="project_desc" type="varchar(512)" encoding="utf8" remarks="項目簡介"/>
<column name="project_creater_id" type="varchar(64)" encoding="utf8" remarks="項目建立者id"/>
<column name="team_id" type="varchar(64)" encoding="utf8" remarks="項目所屬團隊id"/>
<column name="create_time" type="bigint(64)" encoding="utf8" remarks="建立時間"/>
<column name="update_time" type="bigint(64)" encoding="utf8" remarks="更新時間"/>
</createTable>
</changeSet>
<changeSet id="20190713-02" author="solo">
<createTable tableName="project_category" remarks="項目類型表">
<column name="id" type="varchar(64)" remarks="項目類型id">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="name" type="varchar(255)" remarks="類目類型名稱"/>
<column name="status" type="int(11)" remarks="狀態。1正常,2刪除"/>
<column name="remark" type="varchar(255)" remarks="備註"/>
</createTable>
</changeSet>
<changeSet id="20190713-03" author="solo">
<createTable tableName="project_like_user" remarks="項目點贊表">
<column name="id" type="varchar(64)" remarks="主鍵id">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="project_id" type="varchar(64)" remarks="項目id"/>
<column name="user_id" type="varchar(64)" remarks="點讚的用戶id"/>
<column name="status" type="int(11)" remarks="點贊狀態,0 取消點贊,1點贊"/>
<column name="type" type="int(11)" remarks="類型 1點贊"/>
<column name="create_time" type="bigint(64)" remarks="建立時間"/>
<column name="update_time" type="bigint(64)" remarks="更新時間"/>
</createTable>
</changeSet>
<changeSet id="20190713-04" author="solo">
<createTable tableName="project_picture" remarks="項目圖片表">
<column name="id" type="varchar(64)" remarks="圖片id">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="project_id" type="varchar(64)" remarks="項目id"/>
<column name="picture_url" type="varchar(64)" remarks="圖片地址"/>
<column name="picture_url_32" type="varchar(64)" remarks="圖片地址32位"/>
<column name="picture_url_64" type="varchar(64)" remarks="圖片地址64位"/>
</createTable>
</changeSet>
</databaseChangeLog>
複製代碼
若是你的項目一開始就用了 liquibase,那能夠像上面這樣寫,把建表語句都寫在 changelog 裏。
若是一開始沒用,後期想引入 liquibase,能夠把之前的數據庫導出成 sql,而後引入 sql 文件。方式以下:
<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.1.xsd">
<include file="liquibase/changelogs/project.sql" relativeToChangelogFile="false"/>
</databaseChangeLog>
複製代碼
直接把項目導出的數據庫文件 project.sql
經過 include
標籤引進來。
若是 <include>
的方式 sql 文件報錯,能夠換種方式引入,用 <sqlFile>
標籤
<?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.1.xsd">
<changeSet id="1" author="solo">
<sqlFile path="classpath:/liquibase/changelogs/project.sql" encoding="UTF-8" />
</changeSet>
</databaseChangeLog>
複製代碼
以上就是 SpringBoot 整合 Liquibase 的所有內容。
若是有疑問或好的建議,能夠加 WX 交流:douglas1840