wrapper.console.title

Compatibility :3.1.0
Editions :Professional EditionStandard EditionCommunity Edition
Platforms :WindowsMac OSX (Not Supported)LinuxIBM AIX (Not Supported)FreeBSD (Not Supported)HP-UX (Not Supported)Solaris (Not Supported)IBM z/OS (Not Supported)IBM z/Linux (Not Supported)

This property is used to set the title of the console in which the Wrapper is running. If this property is not specified, the console title is usually set by the OS to the name of the running process and will not be changed by the Wrapper.

This works on Windows if the Wrapper is running as a console application or as a Windows Service in combination with the wrapper.ntservice.console property. It works on Linux platforms when the Wrapper is running within a shell. Other UNIX platforms are not currently implemented because they do not work reliably. Please let us know if this is needed for a particular platform.

Example:
wrapper.console.title=My Application

wrapper.console.title.<platform>

Compatibility :3.3.0
Editions :Professional EditionStandard EditionCommunity Edition
Platforms :WindowsMac OSX (Not Supported)LinuxIBM AIX (Not Supported)FreeBSD (Not Supported)HP-UX (Not Supported)Solaris (Not Supported)IBM z/OS (Not Supported)IBM z/Linux (Not Supported)

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

WrapperManager.setConsoleTitle():

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 can be useful in dynamically changing the title depending on the running application.

Reference: Console