具有异步servlet 3.0的GWT请求构建器

时间:2010-05-05 11:26:57

标签: gwt servlets asynchronous

我有示例项目StockWatcher使用requestbuilder与servlet(this example)进行通信。我想让servlet异步。我在doGet方法中添加了以下行:

final AsyncContext ac = request.startAsync();  
ac.setTimeout(1 * 60 * 1000);  
ac.addListener(new AsyncListener() {  

@Override  
public void onError(AsyncEvent arg0) throws IOException {  
            System.out.println("onError");       
}  

public void onComplete(AsyncEvent event) throws IOException {  
            System.out.println("onComplete");   
            queue.remove(ac);  
}  

public void onTimeout(AsyncEvent event) throws IOException {  
            System.out.println("onTimeout");   
            queue.remove(ac);  
}  

@Override  
public void onStartAsync(AsyncEvent arg0) throws IOException {  
            System.out.println("onStartAsync");   

}  
});  
queue.add(ac); 

添加了异步注释:@WebServlet(asyncSupported=true) 并使用:

更改了doGet方法的其余部分
PrintWriter out = ac.getResponse().getWriter();
out.println("Something");
out.flush();

现在没有任何回归。我错了什么?必须在客户端改变一些东西? Glassfish 3没有显示任何错误。

1 个答案:

答案 0 :(得分:5)

你没有做错任何事。 GWT使用servlet 2.5,如果你尝试异步,它就会阻塞。我现在遇到同样的问题,虽然我使用的是Vaadin(使用GWT)。我在主题上找到的链接:http://comments.gmane.org/gmane.org.google.gwt/48496

有一个页面声称已解决问题:http://blog.orange11.nl/2011/02/25/getting-gwt-to-work-with-servlet-3-async-requests/

我还没能尝试过。