Hi there,
As a result of this wonderful Head First
JSP &
Servlets book, I can configure error.jsp pages for my application and for individual jsp's. However, I would like to know if there's a way to configure an error jsp page for a servlet as well.
I have a servlet gets info from a db and forwards to a jsp for the view. But sometimes the code in the servlet throws an exception, and I want to direct users to a specific error page rather than an application catch-all. How should I do that?
Thanks!
Tom