我只是尝试从命令行执行liquibase更新,但找不到任何方法来传递--classpath
参数的多个路径。我使用的命令如下:
liquibase.bat \
--driver=oracle.jdbc.driver.OracleDriver \
--classpath="C:/Users/Me/path_to_driver/ojdbc7.jar" \
--changeLogFile="C:/Users/Me/path_to_changelog_file/changelog.xml" \
--url="jdbc:oracle:thin:@db_host:1521:xe" \
--username=user_name \
--password=some_pass \
update
可以向--classpath
添加一条路径吗?我需要添加路径到changeSet文件,我正在使用Windows。
答案 0 :(得分:0)
--classpath=path:anotherPath
应该可以工作