在Ajax调用失败的情况下重定向到LogOff页面

时间:2014-12-18 14:29:00

标签: java jquery ajax jsp struts2

如果Struts2 Action类中有任何错误,我想将我的请求重定向到LogOff页面。 我正在对db.jsp中的struts操作进行ajax调用,我正在验证会话变量。 我希望用户在db.jsp上获取ajax响应,如果会话已经过验证,则重定向到logoff.jsp。

我从db.jsp调用的Ajax就像:

  $.ajax({
          type : "POST",
          url: "startapp",
          data:{ processDateInput: processDate,secretToken:tokenLocal},
          dataType: "json",
          async: true,
          success: function(result) {
                                var od = JSON.stringify(result); 
                                var obj = JSON.parse(od);
                                var i = 0;
                                console.log(od);
                                }
});

如果会话已经过验证,我正在验证ere,将响应发送回Ajax,否则重定向到用户从应用程序注销的LogOffRedirection.jsp页面:

    public class StartAppAction extends ActionSupport {

        private static Logger logger = Logger.getLogger(StartAppAction.class
                .getName());

        private static final long serialVersionUID = -367986889632883043L;
        private final static String SUCCESS = "success";
        private final static String FAILURE = "failure";

        // private ProcessDate pd = new ProcessDate();

        private Object od;
        private String processDateInput = null;
        private String secretToken=null;

        public String execute() throws Exception {

            HttpServletRequest request = ServletActionContext.getRequest();
            HttpServletResponse response = ServletActionContext.getResponse();
    try{
                if(null!=request.getSession().getAttribute("sesStrUID") && null!=secretToken){
                    if(!secretToken.trim().equals(request.getSession().getAttribute("sesStrUID").toString().trim())){
                        return FAILURE;

                    }

                   }
               }
               catch (Exception e) {
                   logger.error("Exception in token verification in Pre con action");
               }
        return SUCCESS;
        }
public String getProcessDateInput() {
        return processDateInput;
    }

    public void setProcessDateInput(String processDateInput) {
        this.processDateInput = processDateInput;
    }

    public Object getOd() {
        return od;
    }

    public void setOd(Object od) {
        this.od = od;
    }

    public String getSecretToken() {
        return secretToken;
    }

    public void setSecretToken(String secretToken) {
        this.secretToken = secretToken;
    }

我给出的Struts.xml:

<action name="startapp" class="com.ge.wd.action.StartAppAction">
            <result name= "success" type="json"></result>
            <result name="failure">/jsp/LogOffRedirection.jsp</result>
        </action>

它不起作用,它应该像这样工作吗? 或者我们还有其他任何东西可以在Struts2中实现相同的效果。

1 个答案:

答案 0 :(得分:2)

而不是从服务器重定向,因为您使用AJAX进行异步调用,这将无法工作。您需要做的是从成功方法重定向,方法是发送一个值,该值指定您要重定向的错误条件。在下面的例子中,我传递了一个&#34; RedirectURL&#34;作为返回的JSON对象的根成员。如果它存在,那么您将重定向。

例如......

$.ajax({
      type : "POST",
      url: "startapp",
      data:{ processDateInput: processDate,secretToken:tokenLocal},
      dataType: "json",
      async: true,
      success: function(result) {
                            var od = JSON.stringify(result); 
                            var obj = JSON.parse(od);
                            var i = 0;
                            console.log(od);
                            if(obj.redirectUrl){
                                 window.location(obj.redirectUrl);
                            }
      }
});

你也可以在“失败”中做到这一点。通过从服务器抛出异常来调用您的方法。这样,所有异常都将重定向到您希望的页面。

   $.ajax({
          type : "POST",
          url: "startapp",
          data:{ processDateInput: processDate,secretToken:tokenLocal},
          dataType: "json",
          async: true,
          success: function(result) {
                                var od = JSON.stringify(result); 
                                var obj = JSON.parse(od);
                                var i = 0;
                                console.log(od);
          },
          fail: function(ex) {
              window.location(ExceptionRedirectUrl); //ExceptionRedirectUrl would be a global constant.
          }
    });