我试图制作一个
liquibase xml,带 liquibase diff
命令。
我想根据此文档执行此操作:http://www.liquibase.org/documentation/diff.html
如果我尝试使用自定义属性执行示例命令, 与
- 驱动程序:org.postgresql.Driver 下, 我遇到了这个问题:
“运行Liquibase时出现意外错误:java.lang.RuntimeException: 找不到数据库驱动程序:org.postgresql.Driver“
答案 0 :(得分:0)
您必须使用 classpath 键(liquibase documentation)指定驱动程序jar文件所在的类路径。
您的属性文件应如下所示:
driver: org.postgresql.Driver
classpath: postgresql-driver.jar
url: jdbc:postgres@localhost:5432
username: scott
password: tiger