在AppEngine java中重定向到外部链接?

时间:2011-05-04 17:20:46

标签: java google-app-engine gwt redirect entry-point

我想重定向到外部网页,但我不知道该怎么做,因为在EntryPoint中我没有像HttpServlets那样的请求和响应。

我该怎么做?

2 个答案:

答案 0 :(得分:4)

这不起作用?

package test;

import java.io.IOException;
import javax.servlet.http.*;

public class TestServlet extends HttpServlet {
    public void doGet(HttpServletRequest req, HttpServletResponse resp)
            throws IOException {
        resp.sendRedirect("http://www.google.com/");
    }
}

答案 1 :(得分:1)

在GWT中,您可以使用Window.Location.assign(url)将浏览器重定向到新网址。注意:浏览器将加载新的URL,您的GWT应用程序将被关闭(并且所有数据和状态都将丢失)。