farmer111 发表于 2017-1-28 10:03:37

Tomcat定义异常处理页面

  <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处理页面
页: [1]
查看完整版本: Tomcat定义异常处理页面