I want to run a simple executable jar like this:
java -jar /path/to/my/jar/myjar.jar
However, i have to put that absolute path everytime I want to run it. Is there a way to tell the OS to look for the jar in $PATH environment variable?
Thanks,
|
I want to run a simple executable jar like this:
However, i have to put that absolute path everytime I want to run it. Is there a way to tell the OS to look for the jar in Thanks, |
|||
|
|
|
I think you'd use the classpath; append your directory to it and |
|||
|
|
|
You could use CLASSPATH environment variable instead |
|||||
|
|
You can also copy your jar file to /usr/bin folder, then it will work with just Make sure your jar file has the executable bit ( |
|||||||
|
|
The -jar directive overrides the classpath, using whatever is defined in the jar file itself. The best way to do what you need is to use a tool such as ant, a script, or copy it to somewhere where the OS can find it (as Nejc Saje suggested). |
|||
|
|