当前位置: 代码迷 >> Web前端 >> struts2和web.xml异常页面处理
  详细解决方案

struts2和web.xml异常页面处理

热度:59   发布时间:2012-10-12 10:17:04.0
struts2和web.xml错误页面处理

title:struts2和web.xml错误页面处理
?//web.xml
?<error-page>
??<error-code>404</error-code>
??<location>/404.jsp</location>
?</error-page>
?<error-page>
??<error-code>500</error-code>
??
??<location>/500.jsp</location>
?</error-page>

??
??<exception-type>java.IO.Exception</exception-type>
??<location>/IOException.jsp</location>
?</error-page>
?//struts2
?<package name="default" extends="struts-default">
?? ??<default-action-ref name="notFound" />
?? ??<action name="notFound">
??? ??<result>/struts2.jsp</result>
? ?? </action>
?</package>

  相关解决方案