liquibase是否支持local.properties文件中的jdbc mysql连接URL?

时间:2014-04-03 19:38:45

标签: mysql jdbc liquibase

在liquibase.local.properties文件中使用url="jdbc:mysql://127.0.0.1/mydbname"运行liquibase命令(status,update)时,收到以下错误。

Liquibase status Failed: 
liquibase.exception.DatabaseException: liquibase.exception.DatabaseException: 
Connection could not be created to "jdbc:mysql://127.0.0.1/mydbname" with driver com.mysql.jdbc.Driver.  
Possibly the wrong driver for the given database URL

如果我运行相同的命令但是在命令行上传递了url,那就可以了。

1 个答案:

答案 0 :(得分:0)

错误可能是因为mysql驱动程序不在您的类路径中。 Liquibase正在识别URL并尝试将com.mysql.jdbc.Driver配置为要使用的驱动程序,但它似乎无法找到它。