-1

我在我的 Web 应用程序中使用 Struts 2。我编写代码将用户会话检查到拦截器中,但是当我net.sf.json.JSONObject作为响应返回时,它会重置响应对象并将 null 设置为对象。请检查我的代码。

import net.sf.json.JSONObject;
import com.opensymphony.xwork2.interceptor.Interceptor;

public class AuthorizationInterceptor implements Interceptor {

JSONObject response = new JSONObject();

public String intercept(ActionInvocation invocation) {
 try { 
      Map session = invocation.getInvocationContext().getSession();
        if (session.get("userId") == null) {
           response.put("errorCode", "SESSION_OUT");                
            return ActionSupport.ERROR;
        } else {
            System.out.println("Session found");
            Object action = invocation.getAction();
            return invocation.invoke();
        }
    } catch (Exception e) {
        return ActionSupport.ERROR;
    }
}

public JSONObject getResponse() {
    return response;
}

public void setResponse(JSONObject response) {
    this.response = response;
}

}

如何获取 JSON 对象作为拦截器的响应。请帮我解决这个问题。

4

1 回答 1

2

您的代码中有多个错误。

  • 响应是HttpServletResponse,您不应该将该名称赋予 JSONObject。
  • 拦截器不是线程安全的,这意味着您应该在方法内部定义 JSONObject,以防止多个用户同时更新它,一个在另一个
  • 您应该使用JSON 插件文档中描述的statusCode 或 errorCode ,将其配置为您返回的错误结果:

使用 statusCode 设置响应的状态:

<result name="error" type="json">
  <param name="statusCode">304</param>
</result>

和 errorCode 发送错误(服务器可能最终向客户端发送不是序列化 JSON 的内容):

 <result name="error" type="json">
  <param name="errorCode">404</param>
</result>

然后在 AJAX 回调函数中读取它的客户端。

于 2013-06-21T12:42:41.930 回答