Liquibase diff - 驱动问题

时间:2017-11-16 13:47:02

标签: postgresql command-line driver diff liquibase

我试图制作一个

  

liquibase xml,带 liquibase diff

命令。

我想根据此文档执行此操作:http://www.liquibase.org/documentation/diff.html

如果我尝试使用自定义属性执行示例命令, 与

- 驱动程序:org.postgresql.Driver 下, 我遇到了这个问题:

  

“运行Liquibase时出现意外错误:java.lang.RuntimeException:   找不到数据库驱动程序:org.postgresql.Driver“

1 个答案:

答案 0 :(得分:0)

您必须使用 classpath 键(liquibase documentation)指定驱动程序jar文件所在的类路径。

您的属性文件应如下所示:

driver: org.postgresql.Driver
classpath: postgresql-driver.jar
url: jdbc:postgres@localhost:5432
username: scott 
password: tiger