標籤:javaee ssh struts 異常處理
struts2的action可能出現訪問不到,或action報異常等情況,所以需要作一些處理,給使用者一個友好的印象。
1. 異常處理 result聲明在action中
<action name="book_*" class="com.stone.action.BookAction" method="{1}"><result name="{1}" type="dispatcher">/WEB-INF/jsp/book_{1}.jsp</result><result name="error-result">/WEB-INF/jsp/error_result.jsp</result><exception-mapping result="error-result" exception="java.lang.Exception" /></action>
先在action中,定義了一個名為“error-result”的result,當前在action中捕獲到java.lang.Exception時,映射到"error-result",即跳轉到error_result.jsp
註:exception可以是任意一個RuntimeException,可以是自訂的異常。
2. 異常處理 result使用全域result
<global-results> <result name="exceptionError" type="dispatcher">/WEB-INF/jsp/error/struts_exception.jsp</result></global-results><global-exception-mappings> <exception-mapping result="exceptionError" exception="java.lang.Exception" /></global-exception-mappings>
定義一個全域的result,名為exceptionError。全域範圍內,捕獲到java.lang.Exception時,映射到exceptionError,跳轉到對應的jsp。
3. 訪問地址對應的Action不存在時 使用預設的action
<default-action-ref name="error" /><action name="error"> <result>/WEB-INF/struts_errorAction.jsp</result></action>
定義預設的action-引用,引用自後面的action-error。 當解析到訪問的action不存在時,就調用該預設action。
4. 訪問的網頁、資源等不存在時 使用web.xml配置
<error-page><error-code>404</error-code><location>/WEB-INF/404.html</location></error-page>
error-code 錯誤http狀態代碼,location映射到的地址
5.web.xml也可以處理exception,它處理的是Servlet和動態網頁面上的異常。
<error-page><!-- 監聽到servlet、動態網頁中報的相關異常時才會觸發 --><exception-type>java.lang.NullPointerException</exception-type><location>/WEB-INF/exception.html</location></error-page>
JavaEE SSH架構整合(三) struts2 異常、http錯誤狀態代碼處理