3

I've defined an error-page in my web.xml:

 <error-page>
   <exception-type>java.lang.Exception</exception-type>
   <location>/error.jsp</location>
 </error-page>

In that error page, I have a custom tag that I created. The tag handler for this tag e-mails me the stacktrace of whatever error occurred. For the most part this works great.

Where it doesn't work great is if the output has already begun being sent to the client at the time the error occurs. In that case, we get this:

SEVERE: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error.jsp]
 java.lang.IllegalStateException

I believe this error happens because we can't redirect a request to the error page after output has already started. The work-around I've used is to increase the buffer size on particularly large JSP pages. But I'm trying to write a generic error handler that I can apply to existing applications, and I'm not sure it's feasible to go through hundreds of JSP pages making sure their buffers are big enough.

Is there a way to still allow my stack trace e-mail code to execute in this case, even if I can't actually display the error page to the client?

Josh Hinman
  • 6,745
  • 7
  • 38
  • 47

3 Answers3

2

The errorPage isn't going to be used if you've already started sending data to the client. What I do is use a JavaScript callback to check for an incomplete page and then redirect to the error page. At the beginning of your page in an includes header or something, initialize a boolean javascript variable to false, and register an onload handler to check the state and redirect to an error page.

<script type="text/javascript">
        var pageLoadSuccessful = false;//set to true in footer.jsp
        dojo.addOnLoad(function(){
            if (!pageLoadSuccessful) window.location = "<c:url value="/error.do" />";
        });
</script>

Then in a footer jsp, be sure to set this variable to true:

<script type="text/javascript">
    pageLoadSuccessful = true;//declared in header.jsp
</script>
David Smiley
  • 4,102
  • 2
  • 19
  • 18
1

In fact, this particular problem indicates that you were using scriptlets in JSP. This is a bad practice and this particular problem is one of the major reasons for that. You need to move all your business logic to a real java class so that you end up with only taglibs/EL in JSP. In a servlet/filter you can perfectly handle exceptions before forwarding the request to a JSP.

Community
  • 1
  • 1
BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
  • Ummm, no. A tag handler can throw an exception and cause this issue. In fact, I believe that was the case here, but it's been over a year and I honestly can't remember. – Josh Hinman Dec 07 '09 at 18:57
  • That is then to be considered as a flaw/bug in the tag handler code. – BalusC Dec 07 '09 at 19:01
1

Have you tried using the <%@ page errorPage="/myerrorpage.jsp" %> directive?

You also need to use <% page isErrorPage="true" $> in myerrorpage.jsp, then.

I think that may solve your problem. The only problem with that is that you need to include it in every JSP somehow.

Eric Wendelin
  • 43,147
  • 9
  • 68
  • 92
  • I could try that, though I'm not convinced there's a difference between the errorPage="x" attribute and putting it in the web.xml, other than one is page-specific and the other is application-wide. – Josh Hinman Oct 16 '08 at 23:47
  • You might give it a shot on one page just to see if it *could* work. – Eric Wendelin Oct 17 '08 at 00:01