我尝试通过Liquibase升级项目来改变项目。它是一个Java EE项目。所以即时使用liquibase-maven-plugin。
到目前为止,我已经在我的pom.xml中了:
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>2.0.5</version>
<configuration>
<propertyFileWillOverride>true</propertyFileWillOverride>
<propertyFile>src/main/resources/liquibase.properties</propertyFile>
<changeLogFile>src/main/resources/changelogs/changelog.xml</changeLogFile>
</configuration>
<executions>
<execution>
<!-- Another Error: plugin execution not covered by lifecycle configuration..-->
<!-- <phase>process-resources</phase> <goals> <goal>update</goal> </goals> -->
</execution>
</executions>
</plugin>
已包含驱动程序:
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.1-901-1.jdbc4</version>
</dependency>
liquibase.properties文件包含url,username,password,changeLogFile-Path和驱动程序:
#liquibase.properties
driver: org.postgresql.Driver
但它没有驱动程序的类路径。我也需要类路径吗?
changelog.xml有一个简单的变更集,可以创建一个表,只是为了测试liquibase的开头。
但我到目前为止还没到,因为当我用
运行项目时mvn liquibase:update
我收到此错误:
[错误]无法在项目PROJECT上执行目标org.liquibase:liquibase-maven-plugin:2.0.5:update(default-cli):设置或运行Liquibase时出错:java.lang.RuntimeException:找不到数据库driver:org.postgresql.Driver
我看不出这一点..驱动程序之前已经用过了项目。那么为什么liquibase找不到呢?
修改
当我通过添加驱动程序标记在pom.xml中编辑我的配置时,它可以工作:
<configuration>
<propertyFileWillOverride>true</propertyFileWillOverride>
<propertyFile>src/main/resources/liquibase.properties</propertyFile>
<changeLogFile>src/main/resources/changelogs/changelog.xml</changeLogFile>
<driver>org.postgresql.Driver</driver>
</configuration>
之前我的驱动程序是在liquibase.properties中指定的,它实际上也可以正常工作。
如果我想将驱动程序保存在属性文件中,也许有人可以告诉我liquibase.properties文件应该是什么样子。
答案 0 :(得分:11)
您已将postgresql驱动程序添加为您的webapp的依赖项。但是当maven插件运行时,它们有自己的类路径,这与您的webapp不同。因此,您需要为插件本身包含对JDBC驱动程序的依赖(同样适用于其他插件,例如jetty-maven-plugin):
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>2.0.5</version>
<configuration>
<propertyFileWillOverride>true</propertyFileWillOverride>
<propertyFile>src/main/resources/liquibase.properties</propertyFile>
<changeLogFile>src/main/resources/changelogs/changelog.xml</changeLogFile>
</configuration>
<executions>
<execution>
<!-- Another Error: plugin execution not covered by lifecycle configuration..-->
<!-- <phase>process-resources</phase> <goals> <goal>update</goal> </goals> -->
</execution>
</executions>
<dependencies>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.1-901-1.jdbc4</version>
</dependency>
</dependencies>
</plugin>
修改强>
通过更换
来解决问题
liquibase.properties文件中带有driver: org.postgresql.Driver
的{{1}}。
答案 1 :(得分:1)
以下插件配置对我有用。
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<propertyFile>src/main/resources/liquibase.properties</propertyFile>
</configuration>
<executions>
<execution>
<goals>
<goal>update</goal>
</goals>
</execution>
</executions>
</plugin>