设置类路径
你好,我写了一个 shell 脚本,它正在执行 1 个任务。
java -jar abc.jar $* -adminid $j_username
在此命令之前,我想设置特定 lib 文件夹中的所有 jar 的类路径(或想要引用),该怎么做?
hi i have written one shell script which is performing 1 task.
java -jar abc.jar $* -adminid $j_username
before this command i want to set classpath(or want to refer) of all jars which are in particular lib folder, how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在你的java命令之前。
或者:
before your java command.
Or:
一种方法是:
值得注意的是,使用
-jar
时,您不能在类路径上指定其他 JAR/资源,即-cp
开关是被忽略,因此您必须在两者之间进行选择。合并其他 JAR/资源
使用
-jar
指定主要运行程序时的类
One way to do it would be:
It is worth while to note that when using
-jar
you can't specify other JARs/resources on the classpath i.e.-cp
switch is ignored hence you would have to choose between the two.incorporates other JARs/resources
of using
-jar
specify the mainclass when running the program