The command to use when launching a JVM. If the full path to the
java executable is not specified, then the Wrapper will attempt
to locate a java executable on the system path. It is advised
that the value does not contain an extension. Specifying a
value like java.exe would mean
that the same configuration file could not be used on Linux or
UNIX systems.
On Windows systems, it is also possible to use the JRE configuration
from the system registry. This is done by setting an empty value.
Example using system path: |
wrapper.java.command=java
|
Example using JAVA_HOME environment variable: |
wrapper.java.command=%JAVA_HOME%/bin/java
|
Example using full path (not platform independent): |
wrapper.java.command=c:/j2sdk1.4.0/bin/java
|
Example using system registry (not platform independent): |
wrapper.java.command=
|
|