0

我在项目中使用 day CQ 开发过滤器时遇到问题。我的代码正在使用 requestDispatcher 的 forward 方法。但是使用 response.sendRedirect(),它不起作用。

if (servletRequest instanceof SlingHttpServletRequest) {
   HttpServletRequest httpRequest = (HttpServletRequest) servletRequest;
   HttpServletResponse httpResponse = (HttpServletResponse) servletResponse;
   String uri = httpRequest.getRequestURI();

   if(uri.startsWith("/content")){
    Cookie[] cookies = httpRequest.getCookies();
    boolean found = false;
        for (Cookie cookie : cookies) {
        log.info("Cookies in filter: " + cookie.getName());
        if("LtpaToken2".equals(cookie.getName())){
            log.info("LTPA token found ");
            found = true;
            break;
        }
    }
    if(found){
        filterChain.doFilter(servletRequest, servletResponse);
    }
    else{
        httpResponse.sendRedirect("http://www.google.com");
    }           
  }else{
        filterChain.doFilter(servletRequest, servletResponse);
  }

 log.info("Message URL ::"+httpRequest.getRequestURL().toString());
 log.info("URI ::"+uri);
}

所以请解决我的问题,这是非常值得赞赏的。

问候纳尔西 p

4

1 回答 1

0

我不了解 Spring,但在 JEE 中,您不能像在过滤器中那样真正操纵响应。IllegalStateException使用时会得到一个sendRedirector sendError

我的建议是永远不要使用这些抽象。您要做的是指定响应标头并关闭请求。

response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
response.setHeader("Location", ""http://www.google.com");
return;
于 2013-12-16T14:05:30.757 回答