DWR推技术

4. 推技术
   DWR2.0.x的推技术以推发送消息,适用于ChatRoom,股票信息显示等场景,优于现在JS定时轮询服务端的策略,大大节省服务端的资源(数据无变化时不需要应答客户端的定时查询)。
  4.1. 推消息的接收页
设置接收由服务端推送过来的消息的JavaScript
<script type='text/javascript' src='<c:url value="/dwr/engine.js"/>'></script>
    <script type='text/javascript' src='<c:url value="/dwr/util.js"/>'></script>
    <script type='text/javascript' src='<c:url value="/dwr/interface/orderNotice.js"/>'></script>


<script language="javascript">
         function receiveMessages(id) {
            $('orderNotice').innerHTML = "收到id为" + id + "的新订单!";
            $('orderNotice').show();
         }
    </script>
<body onload="DWREngine.setReverseAjax(true);">
       <div id="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。

你可能感兴趣的:(JavaScript,java,sql,jsp,DWR)