这篇文章主要介绍了SpringBoot如何整合Liquibase,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
整合有两种情况
在启动项目时自动执行脚本,若新添加了Liquibase脚本需要重启项目才能执行脚本
在不启动项目时也能通过插件或指令手动让它执行脚本
整合要么只整合1,要么1、2一起整合
只整合2不整合1的话,项目启动时会生成liquibase相关的bean时报错
引入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
按照上述的配置的话,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="创建日期" defaultValueComputed="CURRENT_TIMESTAMP"/> </createTable> </changeSet> </databaseChangeLog>
整合情况:
按照上面的流程配置完,在启动项目时,它就会执行未执行过的Lisquibase脚本了~
有时候想不启动或不重启项目时执行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>
测试整合情况
先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.创建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”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。