将文件添加到 jar 文件的当前类路径
Add files to current classpath of jar file
我有一个由 spring 批处理应用程序创建的 jar ,我正在使用 config.proprerties 但我需要这个文件位于 外面 从罐子里。
我有 config.properties 位置“var/user/config.properties”,我有 运行 使用 命令的罐子:
java -classpath "/var/user/config.properties" batch-0.0.1-SNAPSHOT.jar es.exp.exp.config.BatchConfiguration someJob date=20210115 systemDate=15
但我认为参数 -classpath 设置了所有类路径,我的意思是类路径参数删除了 jar 类路径并仅将 /var/user/config.properties 放在类路径中。
我不需要这个,我需要类路径是“实际的 jar 类路径 + /var/user/config.properties”。
有什么想法吗?
对不起我的英语,不是我的母语。
-classpath
(或 -cp
)中的类路径元素在 Linux 上由“:”或“;”分隔在 Windows.
此外,如果您希望 config.properties
可以在类路径中访问,您不需要在路径中添加文件,而是包含该文件的目录。
试试:
java -cp /var/user:batch-0.0.1-SNAPSHOT.jar es.tirea.cicosgw.config.BatchConfiguration someJob date=20210115 systemDate=15
我有一个由 spring 批处理应用程序创建的 jar ,我正在使用 config.proprerties 但我需要这个文件位于 外面 从罐子里。 我有 config.properties 位置“var/user/config.properties”,我有 运行 使用 命令的罐子:
java -classpath "/var/user/config.properties" batch-0.0.1-SNAPSHOT.jar es.exp.exp.config.BatchConfiguration someJob date=20210115 systemDate=15
但我认为参数 -classpath 设置了所有类路径,我的意思是类路径参数删除了 jar 类路径并仅将 /var/user/config.properties 放在类路径中。 我不需要这个,我需要类路径是“实际的 jar 类路径 + /var/user/config.properties”。 有什么想法吗?
对不起我的英语,不是我的母语。
-classpath
(或 -cp
)中的类路径元素在 Linux 上由“:”或“;”分隔在 Windows.
此外,如果您希望 config.properties
可以在类路径中访问,您不需要在路径中添加文件,而是包含该文件的目录。
试试:
java -cp /var/user:batch-0.0.1-SNAPSHOT.jar es.tirea.cicosgw.config.BatchConfiguration someJob date=20210115 systemDate=15