首页 文章

Liquibase Maven无法读取changeLogFile

提问于
浏览
5

根据我的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 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>

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

有用

2 回答

  • 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

  • 1

    原因是maven Liquibase版本 .

    该错误仅在版本中发生:

    • 3.5.3

    • 3.5.2

    在3.5.1及以下版本中可行 .

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

相关问题