|
Setting this property allows the Title Bar of the console in which the
Wrapper is running to be set. This works on Windows if the Wrapper is
running as a console application or as an NT service with the
wrapper.ntservice.console
property set. It works on UNIX platforms when the Wrapper is running
within a shell. The property defaults to no value meaning that the title
is not set.
| Example: |
wrapper.console.title=My Application
|
It is possible to specify the title based on the platform by appending
the platform name to the property. These platform specific properties
can also be used to ensure that the title is only set for a specific
platform.
| Example (Windows): |
wrapper.console.title.windows=My Windows Application
|
| Example (Linux): |
wrapper.console.title.linux=My Linux Application
|
As an alternative, or in addition to this property, it is also possible
to set the console title from within the Java application by using the
WrapperManager.setConsoleTitle()
method. This allows the application to dynamically change the title as
the application runs.
|