vote up 1 vote down star

I have a servlet which does some error checking and if something is wrong I will typically do this:

response.sendError(403, "My message")
return;

I don't want to throw an exception from the servlet - because I would like to conform with HTTP status codes.

In the web.xml I have configured the following:

    <error-page>
        <error-code>403</error-code>
        <location>/failure.jsp</location>
    </error-page>

In the failure.jsp I have declared usage of JSTL and I would like to get the error messages displayed. I know that I can do the following in scriptlets:

<%= request.getAttribute("javax.servlet.error.message") %>

But I would like to use JSTL with some c:if clause so if I can drop using scriptlets, this would be appreciated.

How can I easily fetch the values from the sendError statement in the servlet in the error page by using JSTL?

flag

50% accept rate

2 Answers

vote up 0 vote down

Declare an JSTL tag with an attribute "var", which will have an exception object(if there any error occured between the body of tags) at the end of tag, which have stackTrace and message properties.

<c:catch var="myException">
<%int x=10/0; %>
</c:catch>

<c:if test="${myException !=null}">
There was an exception: ${myException.message} 
</c:if>
link|flag
This wont work. The JSP page doesn't catch any exception - it is configured as an error page in web.xml. In this scenario the exception is an attribute in the request, but the key is rather awkward and I'm not sure how to reference it from JSTL. – tronda Jul 9 at 21:39
vote up 0 vote down

If you add "isErrorPage='true'" to the @page directive at the top of your JSP, then you will have access to ${pageContext.errorData}, which includes useful items such as the status code and the Exception thrown (errorData.throwable).

link|flag
Nope. It works if you throw an exception, but not with sendError on the HttpServletResponse object - at least with Tomcat 6.0.X. I already have the isErrorPage='true' on the page. – tronda Jul 9 at 21:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.