-
添加依赖
text<dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> </dependency>
-
添加配置
ymlspring: liquibase: contexts: dev,test enabled: true
-
编写liquibase配置类
java@Configuration @EnableConfigurationProperties(LiquibaseProperties.class) public class LiquibaseConfig { @Bean public SpringLiquibase liquibase(DataSource dataSource, LiquibaseProperties properties) { SpringLiquibase liquibase = new SpringLiquibase(); liquibase.setDataSource(dataSource); //指定changelog的位置,这里使用的一个master文件引用其他文件的方式 liquibase.setChangeLog("classpath:liquibase/master.xml"); liquibase.setContexts(properties.getContexts()); liquibase.setDefaultSchema(properties.getDefaultSchema()); liquibase.setDropFirst(properties.isDropFirst()); liquibase.setShouldRun(properties.isEnabled()); liquibase.setChangeLogParameters(properties.getParameters()); liquibase.setRollbackFile(properties.getRollbackFile()); liquibase.setShouldRun(true); return liquibase; } }
-
编写master.xml文件(注意includeAll配置的路径与changelog文件的路径)
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.6.xsd"> <property name="now" value="now()" dbms="h2"/> <property name="now" value="now()" dbms="mysql"/> <property name="floatType" value="float4" dbms="postgresql, h2"/> <property name="floatType" value="float" dbms="mysql, oracle, mssql, mariadb"/> <property name="clobType" value="clob" dbms="h2"/> <property name="clobType" value="clob" dbms="mysql, oracle, mssql, mariadb, postgresql"/> <property name="uuidType" value="varchar(36)" dbms="h2, mysql, mariadb"/> <includeAll path="liquibase/changelog/"/> </databaseChangeLog>
-
编写changelog文件 00000000000000_init_schema.xml
xml<?xml version="1.0" encoding="utf-8"?> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" 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.6.xsd http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd"> <property name="autoIncrement" value="true"/> <changeSet author="system" id="00000000000001" context="dev"> <createTable tableName="hello_date_time_wrapper"> <column name="id" type="BIGINT"> <constraints primaryKey="true" primaryKeyName="hello_date_time_wrapperPK"/> </column> <column name="instant" type="timestamp"/> <column name="local_date_time" type="timestamp"/> <column name="offset_date_time" type="timestamp"/> <column name="zoned_date_time" type="timestamp"/> <column name="local_time" type="time"/> <column name="offset_time" type="time"/> <column name="local_date" type="date"/> </createTable> </changeSet> </databaseChangeLog>
Springboot集成Liquibase笔记整理
yicj2024-08-20 11:46
相关推荐
pianmian13 小时前
类(JavaBean类)和对象我叫小白菜4 小时前
【Java_EE】单例模式、阻塞队列、线程池、定时器Albert Edison4 小时前
【最新版】IntelliJ IDEA 2025 创建 SpringBoot 项目超级小忍5 小时前
JVM 中的垃圾回收算法及垃圾回收器详解weixin_446122465 小时前
JAVA内存区域划分勤奋的小王同学~5 小时前
(javaEE初阶)计算机是如何组成的:CPU基本工作流程 CPU介绍 CPU执行指令的流程 寄存器 程序 进程 进程控制块 线程 线程的执行TT哇5 小时前
JavaEE==网站开发2401_826097625 小时前
JavaEE-Linux环境部署缘来是庄6 小时前
设计模式之访问者模式Bug退退退1236 小时前
RabbitMQ 高级特性之死信队列