4. Changes and Resolved Issues
- Updated Components from JBoss Enterprise Web Server 2.1
- Apache HTTP Server in JBoss Web Server 3.0 is updated from 2.2.26 to 2.4.6.
- mod_cluster in JBoss Web Server 3.0 is updated from 1.2.9 to 1.3.1.
- tomcat-native in JBoss Web Server 3.0 is updated from 1.1.30 to 1.1.32.
- Tomcat 7 in JBoss Web Server 3.0 is updated from 7.0.54 to 7.0.59.
- Hibernate in JBoss Web Server 3.0 is updated from 4.2.14.SP to 4.2.18.Final.
- Replacement of mod_snmp with mod_bmx
- In this release of JBoss Web Server, the Apache HTTP Server mod_snmp module has been replaced with mod_bmx. mod_bmx retrieves the same information about Apache HTTP server for external monitoring, and uses a HTTP/1.1 REST-like interface instead the SNMP protocol.
- BZ#1104217 - JDK8 JasperException: Unable to compile class for JSP. type java.util.Map$Entry cannot be resolved
- The following exception was displayed when JSP page was accessed with
java.util.HashMap
reference:JDK8 JasperException: Unable to compile class for JSP. type java.util.Map$Entry
This issue was related to JDK 8. TheHashMap
implementation had changed and jasper works withHashMap$Entry
subclass which is not present in the JDK 8 HashMap.This issue is resolved in this release of JBoss Web Server 3, JSP pages withjava.util.HashMap
references should compile successfully.
- BZ#1038651 - There are no "TLSv1.1" and "TLSv1.2" options for Apache's SSLProtocol directive
- An incompatibility problem existed with Apache HTTP Server and OpenSSL on Red Hat Enterprise Linux 6.5.This resulted in no TLSv1.1 or TLSv1.2 options being available for Apache HTTP Server’s
SSLProtocol
directive.This issue has been fixed with the update of OpenSSL to version 1.0.1e in this release of JBoss Web Server, and TLSv1.1 and TLSv1.2 options should be available as expected on all supported platforms. - BZ#1131387 - mod_substitute is missing on Windows
- The Apache HTTP Server mod_substitute module was missing in the Microsoft Windows build of JBoss Web Server.This has been fixed in this release, and mod_substitute is now included in the Microsoft Windows build of JBoss Web Server 3.
- JWS-22 - Upgrade to hibernate 4.2.18.Final-redhat-1
- Previously Hibernate had an issue in which
EntityManager.flush()
did not behave properly with a transient one-to-one association and no cascade. In this situation it is expected that anIllegalStateException
will be thrown by the flush operation and the transaction marked for rollback, or the transaction commit will fail.This issue has been fixed in this release of JBoss Web Server by upgrading Hibernate to 4.2.18.Final-redhat-1, andEntityManager.flush()
operations will now behave as expected in situations of a transient one-to-one association and no cascade. - JWS-18 - Include ECJ4.4 in both Tomcats 7 and 8 for JDK8 issue fixes
- When using Java 8 features in JSP pages with Tomcat, JSP compiler exceptions similar to the following were thrown:
Unable to compile class for JSP
.This issue occurred because the ECJ included with Tomcat 7 and 8 did not properly compile Java 8 classes.This issue is fixed with the upgrade of ECJ to version 4.4 for both Tomcat 7 and 8, and Java 8 features in JSP pages should now compile successfully.