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

uhry853o  于 2023-04-20  发布在  Maven
关注(0)|答案(3)|浏览(534)

我试图通过升级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

但是它没有驱动程序的类路径。我也需要类路径吗?
xml有一个简单的变更集,它创建了一个表,只是为了测试liquibase的开始。
但我没有走这么远,因为当我运行的项目与

mvn liquibase:update

我得到这个错误:
[错误]无法在项目PROJECT上执行目标组织。liquibase:liquibase-maven-plugin:2.0.5:update(default-cli):设置或运行Liquibase时出错:java.lang.RuntimeException:找不到数据库驱动程序:org.postgresql.Driver
我看不出这有什么意义。驱动程序以前已经在项目中使用过了。那么为什么liquibase找不到它呢?

编辑

当我在pom.xml中通过添加driver标签来编辑配置时,它可以工作:

<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>

在此之前,我的驱动程序是在www.example.com中指定liquibase.properties,它实际上也应该工作。
也许有人可以告诉我liquibase.properties文件应该是什么样子的,如果我想把驱动程序保存在属性文件中。

relj7zay

relj7zay1#

编辑:

更换后问题解决
driver: org.postgresql.Driver与www.example.com文件中的driver=org.postgresql.Driverliquibase.properties。

原始答案:

您已经添加了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>
bzzcjhmw

bzzcjhmw2#

以下插件配置为我工作。

<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>
mwecs4sa

mwecs4sa3#

如果您使用的是liquibase gradle插件,则可以在build.gradle文件中添加此运行时依赖项以避免此错误。

dependencies {
    liquibaseRuntime "org.postgresql:postgresql:42.2.24"
}

相关问题