我在我的 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 对象作为拦截器的响应。请帮我解决这个问题。