struts 1.2 错误处理:
在 struts-config.xml 中 加入
<global-exceptions >
<exception key="errors.message" type="java.lang.Exception" path="/errorpage.jsp" scope="request"/>
</global-exceptions>
其中遇到所有抛出的excrption 类的子类 都会得到捕获并跳转到erroroage.jsp.
struts 2.0 错误处理:
在相应struts配置文件中 加入
<global-results>
<result name="runtimeException">
/WEBINF/exception/runtimeException.jsp
</result>
</global-results>
<global-exception-mappings>
<exception-mapping result="runtimeException"
exception="java.lang.RuntimeException" />
</global-exception-mappings>
这个的功能是可以捕获到所有抛出的runtimeException 并显示runtimeException.jsp
。
在 struts-config.xml 中 加入
<global-exceptions >
<exception key="errors.message" type="java.lang.Exception" path="/errorpage.jsp" scope="request"/>
</global-exceptions>
其中遇到所有抛出的excrption 类的子类 都会得到捕获并跳转到erroroage.jsp.
struts 2.0 错误处理:
在相应struts配置文件中 加入
<global-results>
<result name="runtimeException">
/WEBINF/exception/runtimeException.jsp
</result>
</global-results>
<global-exception-mappings>
<exception-mapping result="runtimeException"
exception="java.lang.RuntimeException" />
</global-exception-mappings>
这个的功能是可以捕获到所有抛出的runtimeException 并显示runtimeException.jsp
。
本文介绍了Struts 1.2和Struts 2.0框架中错误处理的方法。Struts 1.2通过在struts-config.xml中配置<global-exceptions>来捕获异常并跳转到错误页面。Struts 2.0则通过在配置文件中设置<global-results>和<global-exception-mappings>来捕获运行时异常并显示特定的错误页面。
772

被折叠的 条评论
为什么被折叠?



