我使用以下beean在春季语境中更新方案和初始数据:
<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液体插件来生成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文件包括子级别更新文件.问题,怎么从主人那里引用他们.当我使用Spring时,我必须通过classpath使用以下路径:
<include file="classpath:/db/changelog/db.changelog-1.0.xml"/>
当使用Maven时,路径为:
<include file="src/main/resources/db/changelog/db.changelog-1.0.xml"/>
我想为这两种情况设置相同的配置.如何存档?
解决方法
我评论Igor的答案,他的解决方案似乎不起作用.
为了解决这个问题,我只是把补丁推到了Liquibase:https://github.com/liquibase/liquibase/pull/187.这应该在3.0.6-SNAPSHOT中合并,因此在3.0.6中很快可用.
通过此更改,您现在可以使用此额外的行配置SpringLiquibase:
<property name="ignoringClasspathPrefix" value="true" />
另一个例子/ usecase需要这个更改可以在这里找到:https://github.com/LateralThoughts/spring-liquibase-extensions.