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 オブジェクトを取得するにはどうすればよいですか。この問題を解決するのを手伝ってください。