DWR2.0.x推技术

  DWR2.0.x推技术

  DWR2.0.x的推技术以推发送消息,适用于ChatRoom,股票信息显示等场景,优于现在JS定时轮询服务端的策略,大大节省服务端的资源(数据无变化时不需要应答客户端的定时查询)。

4.1. 推消息的接收页

    设置接收由服务端推送过来的消息的JavaScript

   1. 

       
       


   2. 
    3."DWREngine.setReverseAjax(true);">

      
"orderNotice"/>

第一,引入dwr及那个负责执行推操作的Java类(OrderNotice)的js

第二,编写任意的接收信息的js函数

第三,在body的onload里设定ReverseAjax=true,开始侦听信息

4.2 负责推送消息的Java类

public class OrderNotice {
    public void noticeNewOrder(int id) {         WebContext wctx = WebContextFactory.get();
         ScriptBuffer script = new ScriptBuffer();
         script.appendScript("receiveMessages(").appendData(id).appendScript(");");
         ServerContext sctx = ServerContextFactory.get(wctx.getServletContext());
         Collection pages = sctx.getScriptSessionsByPage("/springside/admin/top.jsp");
         for (ScriptSession session : pages) {
            session.addScript(script);
        }
    }
}

可见,首用ScriptBuffer构造一段在客户端执行的SQL,调用前面接收页的receiveMessages函数。

然后使用WebContext ,ServerContext 定位需要发送的session进行发送。注意这里Hard Code了URL路径来确定Subscriber,也可以像ChatRoom里面那样,用currenpage 发给与orderNotice的调用者发起者在同一页的session。

4.3 其余工作

设定dwr.xml,按Dwr的老模式,从客户端调用OrderNotice,向管理员后台页面推送信息。

 

你可能感兴趣的:(dwr,javascript,session,url,interface,java)