当前位置: 代码迷 >> Web前端 >> WEB.XML error-page 配置异常页面
  详细解决方案

WEB.XML error-page 配置异常页面

热度:212   发布时间:2012-11-12 12:31:57.0
WEB.XML error-page 配置错误页面
<error-page> 
        <error-code>500</error-code> 
        <location>/error.jsp</location> 
 </error-page>

 <error-page> 
        <exception-type>java.lang.NullPointerException</exception-type> 
        <location>/error.jsp</location> 
 </error-page>

  相关解决方案