Liquibase Maven无法读取changeLogFile

时间:2017-03-18 13:41:58

标签: java xml maven plugins liquibase

根据我的说法 File structure 我收到了一个错误

  

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>

我的liquibase.properties文件是:

  

driver = com.mysql.jdbc.Driver
  url = jdbc:mysql:// localhost:3306 / versioned
  用户名=
  密码=
  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>

为什么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>

当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>

它有效

4 个答案:

答案 0 :(得分:2)

原因是maven Liquibase版本。

该错误仅在版本中发生:

  • 3.5.3
  • 3.5.2

在3.5.1及以下版本中可行。

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

答案 1 :(得分:2)

liquibase找到要包含的文件,但不要正确加载它们。

在此示例中,liquibase在列出文件夹内容时找到文件include.xml,但无法加载它。

[ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:3.5.3:update (default-cli) on project testLiquibase: Error setting up or running Liquibase: liquibase.exception.SetupException: file:/src/main/resources/include/include.xml does not exist -> [Help 1]

此问题是跟踪:https://liquibase.jira.com/browse/CORE-2980

答案 2 :(得分:2)

解决方案是更新 master.xml

<includeAll path="changes" relativeToChangelogFile="false" />

答案 3 :(得分:0)

在我的情况下,解决方案是为每个“包含”标签添加到 db-changelog-master.xml,声明:relativeToChangelogFile="true" 像这样:

<include file="e6ebb/ddl/61-someChanges.xml" relativeToChangelogFile="true"/>