我想重定向到外部网页,但我不知道该怎么做,因为在EntryPoint中我没有像HttpServlets那样的请求和响应。
我该怎么做?
答案 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应用程序将被关闭(并且所有数据和状态都将丢失)。