Tomcat定义异常处理页面

来源:互联网 发布:知之者不如好之者拼音 编辑:程序博客网 时间:2024/06/07 05:34

<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <error-page>
    <exception-type>
       cn.hxex.message.exception.MessageDAOException
    </exception-type>
    <location>/error/daoerror.jsp</location>
</error-page> 

 

遇到MessageDAOException时会自动跳转到daoerror.jsp处理页面