16

我使用以下beean在spring上下文中更新方案和初始数据:

<bean id="liquibase" class="liquibase.integration.spring.SpringLiquibase">
    <property name="dataSource" ref="dataSource" />
    <property name="changeLog" value="classpath:db/changelog/db.changelog-master.xml" />
    <property name="dropFirst" value="true" />
</bean>

我还使用 Maven liquibase 插件生成 sql 脚本,以查看创建了哪些表等。

 <plugin>
                <groupId>org.liquibase</groupId>
                <artifactId>liquibase-maven-plugin</artifactId>
                <version>2.0.5</version>
                <configuration>
                    <!--mvn initialize liquibase:updateSQL-->
                    <propertyFile>src/main/resources/db/config/liquibase-gensql-data-access.properties</propertyFile>
                    <changeLogFile>src/main/resources/db/changelog/db.changelog-master.xml</changeLogFile>

                </configuration>
           </plugin>

db.changelog-master.xml文件包括子 liquibase 更改日志文件。问题,如何从大师那里引用它们。当我使用 Spring 时,我必须通过类路径使用以下路径:

<include file="classpath:/db/changelog/db.changelog-1.0.xml"/>

使用Maven时,路径为:

<include file="src/main/resources/db/changelog/db.changelog-1.0.xml"/>

我希望这两种情况都具有相同的配置。我该如何存档?

4

4 回答 4

11

我想如果你改变你的 Maven 路径

<changeLogFile>src/main/resources/db/changelog/db.changelog-master.xml</changeLogFile>

<changeLogFile>db/changelog/db.changelog-master.xml</changeLogFile>

并更新所有包含文件的 db.changelog-master.xml 文件以使用相对于 src/main/resources 目录的路径,它将解决问题。

我通过在调用 Liquibase 的 Spring、maven 和集成测试中使用相同的路径来更改日志文件解决了这个问题。我所有的变更日志文件都位于项目中某个 Maven 模块的 /src/main/resources/db 目录下。

运行 Liquibase 的 Maven 配置文件,注意路径:db/masterChangeLog.xml

<plugin>
                    <groupId>org.liquibase</groupId>
                    <artifactId>liquibase-maven-plugin</artifactId>
                    <version>3.0.2</version>

                    <executions>
                        <execution>
                            <id>*** Install a last major release version of db ***</id>
                            <phase>process-resources</phase>
                            <goals>
                                <goal>update</goal>
                            </goals>
                            <configuration>
                                <changeLogFile>db/masterChangeLog.xml</changeLogFile>
                                <contexts>dbBuildContext, dmlDevContext</contexts>
                                <propertyFile>db/liquibase-${user.name}.properties</propertyFile>
                                <promptOnNonLocalDatabase>false</promptOnNonLocalDatabase>
                                <logging>debug</logging>
                            </configuration>
                        </execution>

db/masterChangeLog.xml 文件包括以下文件:

<include file="db/install.xml"/>
<include file="db/update.xml"/>

db/install.xml 文件包括其他变更日志文件(update.xml 也是如此):

<includeAll path="db/install/seq"/>
<includeAll path="db/install/tab"/>
<includeAll path="db/install/cst"/>
<includeAll path="db/latest/vw"  />

Spring 上下文在应用程序启动时执行相同的一组 db 脚本,如下所示:

<bean id="liquibase" class="liquibase.integration.spring.SpringLiquibase">
    <property name="dataSource" ref="baseCostManagementDataSource" />
    <property name="changeLog" value="classpath:db/masterChangelog.xml" />
    <property name="contexts" value="dbBuildContext, dmlDevContext" />
</bean>
于 2013-08-28T23:25:55.097 回答
10

我评论了伊戈尔的回答,他的解决方案似乎不起作用。

为了解决这个问题,我只是向 Liquibase 推送了一个补丁:https ://github.com/liquibase/liquibase/pull/187 。这应该在 3.0.6-SNAPSHOT 中合并,因此很快在 3.0.6 中可用。

通过此更改,您现在可以SpringLiquibase使用以下附加行进行配置:

<property name="ignoringClasspathPrefix" value="true" />

可以在此处找到另一个需要此更改的示例/用例:https ://github.com/LateralThoughts/spring-liquibase-extensions 。

于 2013-10-06T03:01:08.060 回答
2

Maven 插件在最新版本中具有配置属性 changeLogDirectory。

因此设置<changeLogDirectory>src/main/resources</changeLogDirectory>应该达到你想要的。

于 2019-05-21T20:01:44.957 回答
1

在每个 databaseChangeLog 文件中指定logicalFilePath 属性。见http://www.liquibase.org/documentation/databasechangelog.html

于 2016-04-29T20:22:01.413 回答