SpringBoot整合Liquibase的示例代码
SpringBoot整合Liquibase虽然不难但坑还是有一点的,主要集中在配置路径相关的地方,在此记录一下整合的步骤,方便以后自己再做整合时少走弯路,当然也希望能帮到大家~
整合有两种情况
- 在启动项目时自动执行脚本,若新添加了Liquibase脚本需要重启项目才能执行脚本
- 在不启动项目时也能通过插件或指令手动让它执行脚本
整合要么只整合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文件的路径,按照上述配置的话该文件在class="lazy" data-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文件应该放在
class="lazy" data-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脚本了~
整合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>class="lazy" data-src/main/resources/liquibase.properties</propertyFile>
<!--配置参数,以禁用弹出的对话框,该对话框将确认非本地数据库上的迁移-->
<promptOnNonLocalDatabase>false</promptOnNonLocalDatabase>
</configuration>
</plugin>
</plugins>
</build>
配置Liquibase.properties
注意配置文件的路径应跟在配置Maven插件时声明的一致,即class="lazy" data-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文件应该放在class="lazy" data-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>class="lazy" data-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=class="lazy" data-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内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341