首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

web.xml中异常页面配置的代码

2012-09-27 
web.xml中错误页面配置的代码error-pageerror-code404/error-code!--404错误 下面你懂得 --locat

web.xml中错误页面配置的代码
                   <error-page>
  <error-code>404</error-code><!--404错误 下面你懂得 -->
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>401</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/error.jsp</location>
</error-page> 

热点排行
Bad Request.