我想在发生异常时显示特定的jsp。我有一个自定义例外。 我已经将其映射到web.xml
<error-page>
<location>/WebContents/A3/jsp/test.jsp</location>
</error-page>
这是我的自定义例外
public class TestFileListException extends ServletException
这就是我的servlet中的内容
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
throw new TestFileListException("werw");
}
请帮助我指出流程/逻辑中的错误。 谢谢!
答案 0 :(得分:1)
尝试一下:
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/WebContents/A3/jsp/test.jsp</location>
</error-page>