java – Struts中的Json插件和全局异常

我试图返回一个
JSON格式的全局异常.这是我目前的struts.xml.我不确定我错过了什么.

<struts>

<constant name="struts.devMode" value="true" />
<constant name="struts.custom.i18n.resources" value="global" />
<constant name="struts.configuration.xml.reload" value="true" />

<package name="mkaStrive" extends="json-default">
    <interceptors>
        <interceptor name="json" class="org.apache.struts2.json.JSONInterceptor" />
        <interceptor-stack name="mobileStack">
            <interceptor-ref name="json" />
            <interceptor-ref name="defaultStack" />
        </interceptor-stack>
    </interceptors>
    <default-interceptor-ref name="test" />

    <global-results>

        <!-- Exceptions are handled by ExceptionAction -->
        <result name="exception" type="chain">
            <param name="actionName">exception</param>
        </result>

    </global-results>

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

    <action name="exception" class="n.a.exception.ExceptionAction" />

    <action name="getQuestionsList" class="n.a.mkastrive.action.GetQuestions" method="execute">
        <interceptor-ref name="json" />
        <result type="json"></result>
    </action>       
</package>

我现在的GetQuestions操作只会抛出异常:

public String execute() throws Exception {
    throw new Exception("TEST");
}

从理想情况下,它应该看到我有全局结果,然后链接到名为exception的操作.

最佳答案 我在你提供的struts.xml中看到的唯一问题是:(错字?)

使用

<default-interceptor-ref name="mobileStack" />

代替

<default-interceptor-ref name="test" />

有了这个,您可以验证控件是否在异常操作类的execute方法中:n.a.exception.ExceptionAction.

现在,如果要返回自定义抛出异常的响应,则可以包含json结果:

<action name="exception" class="n.a.exception.ExceptionAction" >
  <result type="json"></result>
</action>

为了获取从GetQuestions.execute()抛出的Exception实例,您可以在异常操作的execute方法中使用以下:

(例外)ActionContext.getContext()getValueStack()findValue( “异常”)..

您可以对此进行操作并在类中设置必需的私有字段,以便可以通过公共getter获取它们以进行json渲染.只需链接到tutorial以获得json响应.

点赞