Morgan Delagrange wrote:
>
> You'll probably want to explore changing your web.xml to forward users to
> a standard error page, rather than showing them a stack trace. This is
> pretty common. Take a look at the <error-page> element of the web.xml,
> which will let you forward to specific pages for specific exceptions.
Thank you, Morgan.
I found an even better solution. I'm assigning error-pages for every JSP
individually using the errorPage-attribute:
<%@ page errorPage="loginerror.jsp" %>
Thomas