快速业务通道

DWR的注释(annotations)使用及反向调用(Reverse Ajax) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-20
age = wctx.getCurrentPage();    running=true;    for (int i = 0; i < 1000; i++) {     if (!running) {      break;     }     ScriptBuffer script = new ScriptBuffer();     script.appendScript("receiveMessages(").appendData(i).appendScript(");");//调用页面的javascript方法把值添到页面上。     // Loop over all the users on the current page     Collection pages = wctx.getScriptSessionsByPage(currentPage);//循环出所有的会话页面并执行     for (Iterator it = pages.iterator(); it.hasNext();) {      System.err.println(i);      ScriptSession otherSession = (ScriptSession) it.next();      otherSession.addScript(script);     }     try {      Thread.sleep(3000);     } catch (InterruptedException e) {      e.printStackTrace();     }    }   }   @RemoteMethod   public  void stop() {    running=false;   }

DWR的注释(annotations)使用及反向调用(Reverse Ajax)(4)

时间:2011-01-17 BlogJava 轻松

这是个简单的程序进行之后就是用个循环来更新页面的数字。

下面也贴一下JSP的代码吧。也算补充下第一部分了。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"      pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head>    <script type=''text/javascript'' src=''/dymc-web/dwr/interface/sectionManager.js''></script>    <script type=''text/javascript'' src=''/dymc-web/dwr/engine.js''></script> <script type="text/javascript"> function receiveMessages(msg) {   //alert(msg);   document.getElementById("content").innerHTML=msg; } </script> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Insert title here</title> </head> <body onload="dwr.engine.setActiveReverseAjax(true)"> <button onclick="sectionManager.start()">start</button> <button onclick="sectionManager.stop()">stop</button> <div id="content"></div> </body> </html>

页面包括两个钮一个开始一个停止。大家来试试吧。这里不添图了太浪费空间

运行起来后点start按钮,看看页面上是不是自己开始变了。新打开个IE,用另外的机器访问此面,疑?怎么都有数字在变换,这就是DWR Reverse Ajax的厉害所在了。再点一下stop,呀,所有打个IE里数字都不变了吧。

注意:代码用的是主动的方式,所以注意页面onload中的<body onload="dwr.engine.setActiveReverseAjax(true)">没有这句可就不好用了。当然 web.xml中也不能少了

<init-param>     <param-name>activeReverseAjaxEnabled</param-name>     <param-value>true</param-value>    </init-param>

该说的都说了就到这吧。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号