|
Makes it possible to control whether or not the WrapperListener.stop method is
called on shutdown when the WrapperListener.start method has not returned or
when it returns an exit code. A value of TRUE will make sure that the stop
method is always called. When FALSE, the stop method will only be called if
the start method returned a value of null prior to the shutdown process being
started. Defaults to FALSE.
| Example: |
wrapper.listener.force_stop=FALSE
|
Most applications will do their own cleanup within the startup process if the
startup fails. Sometimes, however, it is desirable to call the
WrapperListener.stop method even when the startup fails.
Some applications will call System.exit(), WrapperManager.stop(), or
WrapperManager.restart() as they are starting up from within the
WrapperListner.start method. When that happens, the start method will never
return, but the Wrapper will shutdown the JVM. Regardless of the the value
of this property, the shutdown will work correctly.
|