Application parameters are designed to be individual
parameters. If you specify a parameter like
'-c conf/myconffile.conf',
it will work correctly on windows because the
'-c' and
'conf/myconffile.conf'
parameters will be correctly parsed when Java is launched.
But on Unix systems, the parameters will incorrectly be
interpreted as a single parameter
'-c conf/myconffile.conf'.
Incorrect: |
wrapper.app.parameter.1=-c conf/myconffile.conf
|
Correct: |
wrapper.app.parameter.1=-c
wrapper.app.parameter.2=conf/myconffile.conf
|
|