tags:

views:

24

answers:

1

The title pretty much says it all. I have JBoss AS 5. I'd like to see the default JSP that JBoss uses for handling exceptions.

A: 

JBoss AS uses Tomcat as servletcontainer. In Tomcat you can find that code hardcoded(!) in under each org.apache.catalina.valves.ErrorReportValve. You can find the published source code here.

BalusC
Good lord, it doesn't even use EL! D: ...I thought it might be Tomcat rather than JBoss; I'm still not 100% on what each thing does.
Matt Ball
JBoss is a full fledged Java EE Application Server. I.e., implementing all parts of the [Java EE API](http://java.sun.com/javaee/5/docs/api/). It uses Tomcat to fill in under each the `javax.servlet.*` parts of the Java EE API and further it uses another 3rd party or inhouse-grown components to fill in the other Java EE API parts.
BalusC