3

Exceptionタイプのすべてのエラーを結果「エラー」にリダイレクトしたいと思います。そのために、私はこれをしました:

<global-exception-mappings>
          <exception-mapping result="error" exception="java.lang.Exception"></exception-mapping>
</global-exception-mappings>

org.springframework.security.access.AccessDeniedExceptionしかし、私は特定の例外、特にそれをさらに伝播することを許可されるべき例外を処理したくありません。どうすればそれを達成できますか?

4

1 に答える 1

2

演算子を使用instanceofして、例外ハンドラから目的の例外を再スローします。

私はインターセプターでそれを管理しました(これは私が試したものです):

package com.kenmcwilliams.interceptor;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.Interceptor;
import java.util.logging.Level;
import java.util.logging.Logger;

public class Rethrower implements Interceptor{
    @Override
    public void destroy() {
    }

    @Override
    public void init() {
    }

    @Override
    public String intercept(ActionInvocation invocation){
        System.out.println("Start rethrower!");
        String result = "success";
        try {
            result = invocation.invoke();
        } catch (Exception ex) {
            Logger.getLogger(Rethrower.class.getName()).log(Level.SEVERE, null, ex);
        }
        Object exception = ActionContext.getContext().getValueStack().findValue("exception");
        if (exception instanceof RuntimeException){
            System.out.println("DOING RETHROW!");
            RuntimeException e = (RuntimeException)exception;
            throw e;
        }
        System.out.println("After rethrower!");
        return result;
    }
}

struts.xml は次のとおりです (struts dtd を検索する時間を節約するため):

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>
    <constant name="struts.devMode" value="true" />
    <constant name="struts.ui.theme" value="simple" />
    <package  name="kenmcwilliams"  namespace="/" extends="struts-default">
        <interceptors>
            <interceptor name="rethrower" class="com.kenmcwilliams.interceptor.Rethrower"/>
            <interceptor-stack name="rethrow-stack">
                <interceptor-ref name="rethrower"/>
                <interceptor-ref name="defaultStack"/>
            </interceptor-stack>
        </interceptors>
        <global-results>
            <result name="error" >/WEB-INF/content/error.jsp</result>
        </global-results>
        <global-exception-mappings>
            <exception-mapping exception="java.lang.Exception" result="error"/>
        </global-exception-mappings>
        <action name="mybomb" class="com.kenmcwilliams.kensocketchat.action.Bomb">
            <interceptor-ref name="rethrow-stack"/>
            <result>/WEB-INF/content/bomb.jsp</result>
        </action>
    </package>
</struts>

最後にアクション (実行時例外をスローするだけです):

package com.kenmcwilliams.kensocketchat.action;

import com.opensymphony.xwork2.ActionSupport;

public class Bomb extends ActionSupport{
    @Override
    public String execute() throws Exception{
        throw new RuntimeException();
    }
}
于 2012-04-25T11:39:23.227 に答える