0

我的问题是如何在不使用 javaScript 的情况下在大气中从服务器推送数据

我按照聊天教程进行操作,这很容易理解,现在我想从 struts 2 中的操作推送数据(而不是从 javascript)我知道我必须调用 .onMessage()方法,但我被阻止了如何构建AtmosphereResponse我尝试过的参数

AtmosphereResponse response = new AtmosphereResponse.Builder().build();

但是NullPointerExeption当我使用response.write()方法时它会返回

非常感谢您的合作

4

1 回答 1

1

解决方案 :BroadcasterFactory.getDefault().lookup("/atmosphere").broadcast(message);

"/atmosphere"是你的 AtmosphereServlet 模式

于 2013-05-23T16:00:04.567 回答