Liquibase Maven无法读取changeLogFile

Fer*_*ezo 6 java xml plugins liquibase maven

根据我的 文件结构, 我收到了一个错误

liquibase.exception.SetupException:file:/src/main/liquibase/changes/000-initial-schema.xml不存在

我的pom.xml插件配置如下:

<build>
    <plugins>
        <plugin>
            <groupId>org.liquibase</groupId>
            <artifactId>liquibase-maven-plugin</artifactId>
            <version>3.5.3</version>
            <configuration>
                <propertyFile>src/main/liquibase/liquibase.properties</propertyFile>
            </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>update</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
Run Code Online (Sandbox Code Playgroud)

我的liquibase.properties文件是:

driver = com.mysql.jdbc.Driver
url = jdbc:mysql:// localhost:3306/versioned
username =
password =
changeLogFile = src/main/liquibase/master.xml

我的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-2.0.xsd">
<includeAll path="src/main/liquibase/changes" />
</databaseChangeLog>
Run Code Online (Sandbox Code Playgroud)

为什么Liquibase找不到那个文件?即使我将该文件名更改为:000-initial-schemaTEST.xml,错误仍然是:

liquibase.exception.SetupException:file:/src/main/liquibase/changes/000-initial-schemaTEST.xml不存在

我也放了那个文件(它是由generateChangeLog目标从数据库生成的)

<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<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-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">
<changeSet author="arek (generated)" id="1489753245544-1">
    <createTable tableName="user">
        <column autoIncrement="true" name="id" type="INT">
            <constraints primaryKey="true"/>
        </column>
        <column name="name" type="VARCHAR(255)">
            <constraints nullable="false"/>
        </column>
    </createTable>
</changeSet>
<changeSet author="arek (generated)" id="1489753245544-2">
    <addUniqueConstraint columnNames="id" constraintName="id_UNIQUE" tableName="user"/>
</changeSet>
Run Code Online (Sandbox Code Playgroud)

要比较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-2.0.xsd">

<include file="src/main/liquibase/changes/001-add-user-address.xml" />
<!--<includeAll path="src/main/liquibase/changes" />-->
</databaseChangeLog>
Run Code Online (Sandbox Code Playgroud)

有用

Tia*_* Na 5

解决方案是更新master.xml

<includeAll path="changes" relativeToChangelogFile="false" />
Run Code Online (Sandbox Code Playgroud)


Fer*_*ezo 4

原因是maven Liquibase 版本。

该错误仅发生在以下版本中:

  • 3.5.3
  • 3.5.2

在 3.5.1 及以下版本中它可以工作。

也许有人知道为什么它在 3.5.2 和 3.5.3 中不起作用以及在这些版本中应该如何配置?

  • 还有版本3.6.2。 (2认同)
  • 还有版本3.6.3 (2认同)