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

web.xml配置异常页面跳转

2012-06-26 
web.xml配置错误页面跳转web.xml配置错误页面跳转(使用error-page/error-page)welcome-file-listwe

web.xml配置错误页面跳转
web.xml配置错误页面跳转(使用<error-page></error-page>)

  <welcome-file-list>    <welcome-file>/index.html</welcome-file>    <welcome-file>/welcome.jsp</welcome-file>  </welcome-file-list>  <error-page>    <error-code>401</error-code>    <location>/jsp/common/error.jsp</location>  </error-page>  <error-page>    <error-code>403</error-code>    <location>/jsp/common/error.jsp</location>  </error-page>  <error-page>    <error-code>404</error-code>    <location>/jsp/common/error.jsp</location>  </error-page>  <error-page>    <error-code>500</error-code>    <location>/jsp/common/error.jsp</location>  </error-page>  <taglib>    <taglib-uri>/tags/struts-bean</taglib-uri>    <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>  </taglib>

热点排行