| Compatibility : | 3.3.0 |
| Editions : |    |
| Platforms : |          |
This property is used to specify the arguments of a command executed in response to a specific event.
Like several of the event command properties, it can be defined:
-
Globally for all events: wrapper.event.default.command.argv.<n> property, or
-
For a specific event: wrapper.event.<event_name>.command.argv.<n> property.
The "<event_name>" component of the property name can be
either the keyword "default",
or one of the Event Types.
By setting the default property,
all Event Types which are not set explicitly will take on that value.
The "<n>" component of the property name is an integer number counting up from "1".
The wrapper.ignore_sequence_gaps
property can optionally be set to allow gaps in the sequence.
| Example: |
wrapper.event.jvm_prelaunch.command.argv.1=/usr/bin/mycleanup
wrapper.event.jvm_prelaunch.command.argv.2=/tmp/myapp-tmp
|
Please see the Event Commands documention for more examples
and an explanation of how the various event properties can be used together.
When the Wrapper is generating the command line to execute the child process,
the Event Handler Variables
will be replaced in the value.
| Example: |
wrapper.event.jvm_prelaunch.command.argv.1=/usr/bin/mycleanup
wrapper.event.jvm_prelaunch.command.argv.2=/tmp/myapp-tmp-%WRAPPER_EVENT_JVM_PID%
|
|