-
Suggestion
-
Resolution: Answered
-
None
-
None
NOTE: This suggestion is for Confluence Server. Using Confluence Cloud? See the corresponding suggestion.
Confluence won't work properly on Glassfish (v2.1 or v3) unless the classloader delegation is switched off. This can be configured via sun-web.xml which could be bundled with Confluence without affecting any other containers.
diff -r 39c81074bb98 confluence/confluence-project/conf-webapp/src/main/webapp/WEB-INF/sun-web.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/confluence/confluence-project/conf-webapp/src/main/webapp/WEB-INF/sun-web.xml Sun Dec 20 09:28:16 2009 -0800 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!DOCTYPE sun-web-app + PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 8.1 Servlet 2.4//EN" + "http://www.sun.com/software/appserver/dtds/sun-web-app_2_4-1.dtd"> + +<sun-web-app error-url=""> + <class-loader delegate="false"/> +</sun-web-app>
Unless the classloader delegation if turned off, the container will try to use container's classloader to load classes before the application specific classloader is used. This will result in all kinds of weird errors in cases where same libraries but different versions are bundled with both Confluence and GlassFish (e.g. Felix, Xalan, etc).
- relates to
-
CONFCLOUD-18094 Bundle sun-web.xml with classloader settings required for GlassFish (PATCH)
- Closed
[CONFSERVER-18094] Bundle sun-web.xml with classloader settings required for GlassFish (PATCH)
Workflow | Original: JAC Suggestion Workflow 4 [ 3565505 ] | New: JAC Suggestion Workflow 3 [ 4331956 ] |
Workflow | Original: JAC Suggestion Workflow 2 [ 3181267 ] | New: JAC Suggestion Workflow 4 [ 3565505 ] |
Status | Original: RESOLVED [ 5 ] | New: Closed [ 6 ] |
Workflow | Original: JAC Suggestion Workflow [ 3037417 ] | New: JAC Suggestion Workflow 2 [ 3181267 ] |
Workflow | Original: Confluence Workflow - Public Facing v4 [ 2531776 ] | New: JAC Suggestion Workflow [ 3037417 ] |
Workflow | Original: Confluence Workflow - Public Facing v3 [ 2280303 ] | New: Confluence Workflow - Public Facing v4 [ 2531776 ] |
Workflow | Original: Confluence Workflow - Public Facing v3 - TEMP [ 2165398 ] | New: Confluence Workflow - Public Facing v3 [ 2280303 ] |
Workflow | Original: Confluence Workflow - Public Facing v3 [ 1922087 ] | New: Confluence Workflow - Public Facing v3 - TEMP [ 2165398 ] |
Workflow | Original: Confluence Workflow - Public Facing v2 [ 1763801 ] | New: Confluence Workflow - Public Facing v3 [ 1922087 ] |
Description |
Original:
Confluence won't work properly on Glassfish (v2.1 or v3) unless the classloader delegation is switched off. This can be configured via {{sun-web.xml}} which could be bundled with Confluence without affecting any other containers.
{code} diff -r 39c81074bb98 confluence/confluence-project/conf-webapp/src/main/webapp/WEB-INF/sun-web.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/confluence/confluence-project/conf-webapp/src/main/webapp/WEB-INF/sun-web.xml Sun Dec 20 09:28:16 2009 -0800 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!DOCTYPE sun-web-app + PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 8.1 Servlet 2.4//EN" + "http://www.sun.com/software/appserver/dtds/sun-web-app_2_4-1.dtd"> + +<sun-web-app error-url=""> + <class-loader delegate="false"/> +</sun-web-app> {code} Unless the classloader delegation if turned off, the container will try to use container's classloader to load classes before the application specific classloader is used. This will result in all kinds of weird errors in cases where same libraries but different versions are bundled with both Confluence and GlassFish (e.g. Felix, Xalan, etc). |
New:
{panel:bgColor=#e7f4fa} *NOTE:* This suggestion is for *Confluence Server*. Using *Confluence Cloud*? [See the corresponding suggestion|http://jira.atlassian.com/browse/CONFCLOUD-18094]. {panel} Confluence won't work properly on Glassfish (v2.1 or v3) unless the classloader delegation is switched off. This can be configured via {{sun-web.xml}} which could be bundled with Confluence without affecting any other containers. {code} diff -r 39c81074bb98 confluence/confluence-project/conf-webapp/src/main/webapp/WEB-INF/sun-web.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/confluence/confluence-project/conf-webapp/src/main/webapp/WEB-INF/sun-web.xml Sun Dec 20 09:28:16 2009 -0800 @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!DOCTYPE sun-web-app + PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 8.1 Servlet 2.4//EN" + "http://www.sun.com/software/appserver/dtds/sun-web-app_2_4-1.dtd"> + +<sun-web-app error-url=""> + <class-loader delegate="false"/> +</sun-web-app> {code} Unless the classloader delegation if turned off, the container will try to use container's classloader to load classes before the application specific classloader is used. This will result in all kinds of weird errors in cases where same libraries but different versions are bundled with both Confluence and GlassFish (e.g. Felix, Xalan, etc). |
Link |
New:
This issue relates to |