java liquibase无法在DB中执行更改

jmp7cifd  于 2024-01-05  发布在  Java
关注(0)|答案(2)|浏览(156)

我不明白为什么没有一个更改集被执行并反映在DB中。
我也提到了这个link,它也有同样的问题,不幸的是,这个post没有答案。
总之,没有执行任何变更集,我的数据库中没有表(除了数据库)。


的数据
请参考下面的代码。
类“DataVersioningController.java”有main方法,它调用“liquiebaseRun()”方法。

  1. public static void main(String args[]) throws LiquibaseException, SQLException {
  2. new DataVersioningController().liquiebaseRun();
  3. }
  4. public void liquiebaseRun() throws SQLException, LiquibaseException {
  5. JdbcConnection jdbcConnection = new JdbcConnection(DataVersioningController.getConnection());
  6. DatabaseChangeLog dbChangeLog = new DatabaseChangeLog("D:\\ChangeSet.xml");
  7. Database database = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(jdbcConnection);
  8. ClassLoaderResourceAccessor classLoaderAccessor = new ClassLoaderResourceAccessor();
  9. CommandLineResourceAccessor clAccessor = new CommandLineResourceAccessor(getClass().getClassLoader());
  10. CompositeResourceAccessor ref = new CompositeResourceAccessor(new ResourceAccessor[] { clAccessor, classLoaderAccessor });
  11. database.setDefaultSchemaName("test");
  12. database.setLiquibaseSchemaName("test");
  13. Liquibase liquibase = new Liquibase(dbChangeLog, ref, database);
  14. liquibase.update(new Contexts("test"), new LabelExpression());
  15. System.out.println("Completed ");
  16. }

字符串

ChangeSet.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <databaseChangeLog
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
  5. xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
  6. xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd
  7. http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
  8. <changeSet author="admin" id="1" context="test">
  9. <createTable tableName="person">
  10. <column autoIncrement="true" name="id" type="INT">
  11. <constraints primaryKey="true"/>
  12. </column>
  13. <column name="name" type="VARCHAR(255)">
  14. <constraints nullable="false"/>
  15. </column>
  16. <column name="address" type="VARCHAR(255)"/>
  17. </createTable>
  18. </changeSet>
  19. </databaseChangeLog>

sgtfey8w

sgtfey8w1#

您不需要手动调用liquibase。如果您使用的是SpringBoot和Maven,请添加该依赖项:

  1. <!-- https://mvnrepository.com/artifact/org.liquibase/liquibase-core -->
  2. <dependency>
  3. <groupId>org.liquibase</groupId>
  4. <artifactId>liquibase-core</artifactId>
  5. <version>3.6.2</version>
  6. </dependency>

字符串
并将该属性发送到您的application.properties:

  1. spring.liquibase.change-log=//path to your changeset

0s0u357o

0s0u357o2#

我遇到了一个类似的问题,当我使用SpringLiquibaseschema per tenant时,没有应用更改。
我需要设置liquibase.setLabelFilter(schemaName)来解决更改日志缓存问题。

相关问题