.atitit.web 推送实现解决方案集合(3)—-dwr3 Reverse Ajax

1. 原理实现 1

2. Page  增加配置,增加回调函数dwr.engine.setActiveReverseAjax(true); 1

3. Web.xml增加配置 1

4. Java代码(page法,简单) 2

5. 推荐实现方式 attribute法。。 2

6. 参考::: 2

 

1. 原理实现

 

ScriptSession ::简单的一个page url管理一个scriptsession,这个dept兰。。

attribute法::: 一个page可以多个sess,这个推荐。。

2. Page  增加配置,增加回调函数dwr.engine.setActiveReverseAjax(true);

 

作者:: 老哇的爪子 Attilax 艾龙,  

 

3. Web.xml增加配置

 

   <init-param>

    <param-name>activeReverseAjaxEnabled</param-name>

    <param-value>true</param-value>

  </init-param>

  <init-param>

  <param-name>org.directwebremoting.extend.ServerLoadMonitor</param-name>

  <param-value>org.directwebremoting.impl.PollingServerLoadMonitor</param-value>

</init-param>

 <!– timer time  –>

<init-param>

  <param-name>disconnectedTime</param-name>

  <param-value>1000</param-value>

</init-param>

 

4. Java代码(page法,简单)

public static void pushJs(String js_str) {

js_str=js_str.replace(“/elfinder-2.0-rc1/php/../../”, “”);

// attilax 老哇的爪子 1_u_8 o0c

Collection<ScriptSession> sesses = ServerContextFactory.get().getScriptSessionsByPage(“/vod/elemt/elemt_edit.jsp”);

// Util util=new Util(sesses);

for (ScriptSession scriptSession : sesses) {

String script = js_str;// “recvFilepath(‘aaaa’);”;

scriptSession.addScript(new ScriptBuffer(script));

}

}

//e

 

5. 推荐实现方式 attribute法。。