struts 1.x 学习 ---持续更新
pokerwen
posted @ 2009年5月13日 00:09
in 未分类
with tags
struts 1.x
, 2007 阅读
最后更新:2009-5-12
1.可以通过在web.xml这配置,统一管理项目中的error显示页面。强……
<error-page>
<error-code>404</error-code>
<location>/commom/404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/commom/500.jsp</location>
</error-page>
<error-code>404</error-code>
<location>/commom/404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/commom/500.jsp</location>
</error-page>
如果需要对特定类型的error做显示,还可以设定 <exception-type>来达到效果
<error-page>
<exception-type>javax.servlet.ServletException</exception-type>
<location>/commom/system_error.jsp</location>
</error-page>
<error-page>
<exception-type>java.io.IOException</exception-type>
<location>/commom/system_ioerror.jsp</location>
</error-page>
<exception-type>javax.servlet.ServletException</exception-type>
<location>/commom/system_error.jsp</location>
</error-page>
<error-page>
<exception-type>java.io.IOException</exception-type>
<location>/commom/system_ioerror.jsp</location>
</error-page>