Chapter 2. New features and enhancements
Red Hat JBoss Web Server 6.1 includes the following new features and enhancements.
2.1. Red Hat Enterprise Linux 10 support Copy linkLink copied to clipboard!
This release of JBoss Web Server is also certified for use on Red Hat Enterprise Linux 10. Support is available for installing JBoss Web Server on Red Hat Enterprise Linux 10 from an archive file or RPM packages.
2.2. Windows Server 2022 support Copy linkLink copied to clipboard!
This release of JBoss Web Server is also certified for use on Windows Server 2022. Support is available for installing JBoss Web Server on Windows Server 2022 from an archive file.
2.3. Support for JBoss Web Server logs in JSON format Copy linkLink copied to clipboard!
JBoss Web Server 6.1 introduces support for generating logs in JavaScript Object Notation (JSON) format. This feature uses JSON formatting to provide the same type of information as the one-line log format.
You can enable this feature in the JWS_HOME/tomcat/conf/logging.properties file in two ways:
If you want the
catalina.outfile for the console output log to be rendered in JSON format, set thejava.util.logging.ConsoleHandler.formatterproperty toorg.apache.juli.JsonFormatter.For example:
java.util.logging.ConsoleHandler.formatter = org.apache.juli.JsonFormatterIf you want the
catalina.logfile to be rendered in JSON format, set the1catalina.org.apache.juli.AsyncFileHandler.formatterproperty toorg.apache.juli.JsonFormatter.For example:
1catalina.org.apache.juli.AsyncFileHandler.formatter = org.apache.juli.JsonFormatter
For more information about org.apache.juli.JsonFormatter, see the Apache Tomcat documentation.