我有一个SmartGWT应用程序,其中有一个过滤器,我试图找出(登录时)是否应该转发请求(例如桌面到移动设备)。代码执行,浏览器发出get请求,但没有得到响应,也没有重定向。我尝试过使用http://google.com,但这种方法不起作用,所以它必须是别的东西。
public void doFilter(ServletRequest req, ServletResponse res,
FilterChain chain) throws ServletException, IOException {
HttpServletRequest request = (HttpServletRequest) req;
HttpServletResponse response = (HttpServletResponse) res;
HttpSession session = request.getSession();
WURFLHolder wurfl = (WURFLHolder) getFilterConfig().getServletContext().getAttribute(WURFLHolder.class.getName());
WURFLManager manager = wurfl.getWURFLManager();
Device device = manager.getDeviceForRequest(request);
boolean webBrowser = isWebBrowser(device);
String path = ((HttpServletRequest) request).getRequestURI();
boolean isBrowserOnMobile = true; // webBrowser && path.contains(MOBILE_REQ_PATH);
boolean isMobileOnDesktop = !webBrowser && path.contains(DESKTOP_REQ_PATH);
if (isBrowserOnMobile || isMobileOnDesktop) {
if (isBrowserOnMobile) {
path = "http://www.google.com";
} else {
path = "/PregledPredmeta/MobileAppEntryPoint.html";
}
response.encodeRedirectURL(path);
response.sendRedirect(path);
return;
...
答案 0 :(得分:2)
在使用response.sendRedirect()
之前,您是否向HTTP响应发送了任何内容?要使用HTTP重定向HEADER,您无法向浏览器发送任何响应。即使是空格或换行/换行也可以停止重定向。
如果您已检查所有代码并确保未向浏览器发送任何内容,则可以使用JavaScript重定向<script>location.href='yoururl';</script>
。它不是一个很酷的解决方案,但它确实有效。