postgresql - 找不到数据库驱动程序 : org. postgresql.Driver

标签 postgresql maven liquibase

我试图通过使用 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、用户名、密码、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:找不到数据库驱动程序: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 文件应该是什么样子。

最佳答案

编辑:

问题已通过更换
解决 driver: org.postgresql.Driver 在 liquibase.properties 文件中带有 driver=org.postgresql.Driver


原答案:

您已将 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>

关于postgresql - 找不到数据库驱动程序 : org. postgresql.Driver,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14501332/

相关文章:

postgresql - array_append 函数不起作用

java - Gradle 传递依赖解析到 alpha 版本?

java - 无法执行spring boot jar

java - 如何计算数组列包含元素的行

postgresql - 了解 PostgreSQL 中的相关性

postgresql - 合并两个分组?

java - 在 Java 项目中更新 Twitter4j

Maven liquibase 插件

java - 如何在 liquibase 变更集中设置多个外键?

liquibase - liquibase 变更集的事务性回滚