必威体育Betway必威体育官网
当前位置:首页 > IT技术

Pushlet详解

时间:2019-10-03 18:15:35来源:IT技术作者:seo实验室小编阅读:54次「手机版」
 

pushlet

pushlet推送是一种将java后台数据推送到web页面的框架技术。下面我会对Pushlet的定时周期性自动推送、需求推送和点对点推送进行讲解(注意:以下提到的监听路径事件订阅名)。

首先,需要导入从Pushlet官方下载js文件和jar包,如下图结构。

图中选中文件为Pushlet相关文件,jquery提供ajax-pushlet-client.js支持。接下来配置web.xml。


 
  1. <?xml version="1.0" encoding="UTF-8"?>

  2. <web-APP xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="webapp_ID" version="3.0">

  3. <welcome-file-list>

  4. <welcome-file>page/index.jsp</welcome-file>

  5. </welcome-file-list>

  6. <servlet>

  7. <servlet-name>pushlet</servlet-name>

  8. <servlet-class>nl.justobjects.pushlet.servlet.Pushlet</servlet-class>

  9. <load-on-startup>1</load-on-startup>

  10. </servlet>

  11. <servlet-mapping>

  12. <servlet-name>pushlet</servlet-name>

  13. <url-pattern>/pushlet.srv</url-pattern>

  14. </servlet-mapping>

  15. </web-app>

由于Pushlet的jajax-pushlet-client.js中获取的项目路径时,是默认当作用户放置ajax-pushlet-client.js在web根目录下的,若放置到其它子目录位置时,在获取web项目路径的时项目路径会加上子目录路径,这样去访问pushlet的java服务时就会找不到。所以,这里我们会改写ajax-pushlet-client.js中的获取web项目路径的方法。

原始获取web项目路径的方法如下:


 
  1. _getWebRoot: function() {

  2. /** Return directory of this relative to document URL. */

  3. if (PL.webRoot != null) {

  4. return PL.webRoot;

  5. }

  6. //derive the basedir value by looking for the script tag that loaded this file

  7. var head = document.getElementsByTagName('head')[0];

  8. var nodes = head.childNodes;

  9. for (var i = 0; i < nodes.length; ++i) {

  10. var src = nodes.item(i).src;

  11. if (src) {

  12. var index = src.indexof("ajax-pushlet-client.js");

  13. if (index >= 0) {

  14. index = src.indexOf("lib");

  15. PL.webRoot = src.substring(0, index);

  16. break;

  17. }

  18. }

  19. }

  20. return PL.webRoot;

  21. },

改写后获取web项目路径的的方法如下:


 
  1. _getWebRoot: function() {

  2. /** Return directory of this relative to document URL. */

  3. if (PL.webRoot != null) {

  4. return PL.webRoot;

  5. }

  6. //derive the baseDir value by looking for the script tag that loaded this file

  7. //获取当前网址,如: http://localhost:8080/PushletNote/index.jsp

  8. var webPath = window.document.location.href;

  9. //获取主机地址之后的目录,如: /PushletNote/index.jsp

  10. var pathName = window.document.location.pathname;

  11. //获取主机地址,如: http://localhost:8080

  12. var hostPaht = webPath.substring(0,webPath.indexOf(pathName));

  13. //获取带"/"的项目名,如:/Pushlet

  14. var projectName = pathName.substring(0,pathName.substr(1).indexOf('/')+1);

  15. PL.webRoot = hostPaht + projectName + "/";

  16. return PL.webRoot;

  17. },

这样,就可以不必一定要将ajax-pushlet-client.js不放在web根目录下了。

以下三种推送方式的实现都在以上配置的基础上进行。

index.jsp的代码作用是为了方便统一管理三种方式,代码如下:


 
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"

  2. pageEncoding="UTF-8"%>

  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

  4. <html>

  5. <head>

  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

  7. <title>Pushlet主页</title>

  8. <style type="text/css">

  9. *{

  10. margin:0px auto;

  11. padding:0px;

  12. text-decoration: none;

  13. list-style:none;

  14. font-size:12px;

  15. }

  16. #main{

  17. margin-top:20px;

  18. width:500px;

  19. height:600px;

  20. background:#eee;

  21. border-radius:5px;

  22. padding-left:30px;

  23. padding-top:30px;

  24. }

  25. .list{

  26.  
  27. }

  28. .info{

  29. margin-left:10px;

  30. }

  31. </style>

  32. </head>

  33. <body>

  34. <p id="main">

  35. <p class="list">*<a class="info" href="./page/timing_get_pull.jsp">服务向页面定时周期性推送消息Demo</a></p>

  36. <p class="list">*<a class="info" href="./page/auto_get_pull.jsp">服务按某种需求向页面推送消息Demo</a></p>

  37. <p class="list">*<a class="info" href="./page/one_to_one_get_pull.jsp">一对一推送消息Demo</a></p>

  38. </p>

  39. </body>

  40. </html>

定时周期性推送:

这种方式是在java代码中配置休眠时间,每隔一定时间向web页面推送一次消息,只要web页面js中配置了启动监听,就能获取相应数据。

java代码如下:


 
  1. package com.pushlet;

  2.  
  3. import nl.justobjects.pushlet.core.Event;

  4. import nl.justobjects.pushlet.core.EventPullSource;

  5.  
  6. /**

  7. * @ProjectName:PushletNote

  8. * @ClassName:PushletHelper

  9. * @author 御兰草

  10. * @email [email protected]

  11. * @date 2014年10月10日

  12. * @Description:无

  13. */

  14. public class PushletHelper {

  15. static public class PushletImpl extends EventPullSource{

  16. //定义临时数字静态变量

  17. private int num = 0;

  18.  
  19. /**

  20. * 休眠1秒执行一次pullEvent方法

  21. */

  22. @Override

  23. protected long getSleepTime() {

  24. return 1000;

  25. }

  26.  
  27. /* (non-Javadoc)

  28. * @see nl.justobjects.pushlet.core.EventPullSource#pullEvent()

  29. */

  30. @Override

  31. protected Event pullEvent() {

  32. Event event = Event.createDataEvent("/pushlet/timing");

  33. event.setfield("result", num);

  34. num++;

  35. return event;

  36. }

  37.  
  38. }

  39. }

web页面代码如下(这里我的jsp文件名为timing_get_pull.jsp):


 
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"

  2. pageEncoding="UTF-8"%>

  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

  4. <html>

  5. <head>

  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

  7. <meta http-equiv="pragma" content="no-cache" />

  8. <title>服务向页面定时周期性推送消息Demo</title>

  9. <script type="text/JavaScript" src='../js/jquery-1.10.2.js'></script>

  10. <script type="text/javascript" src='../js/ajax-pushlet-client.js'></script>

  11. <script type="text/javascript">

  12. function begin(){

  13. PL._init();

  14. PL.joinListen('/pushlet/timing');

  15. }

  16.  
  17. //Pushlet的js中封装方法,产生消息

  18. function onData(event) {

  19. $("#info").text(event.get("result"));

  20. }

  21.  
  22. function stop(){

  23. //离开

  24. PL.leave();

  25. }

  26. </script>

  27. </head>

  28. <body>

  29. <p style="margin:0px auto;width:600px;height:400px;background:#eee;border-radius:5px;">

  30. <button href="../index.jsp">返回</a>

  31. <center id='info'>显示从后台获取的数据</center>

  32. <button contentType="text/html; charset=UTF-8"

  33. pageEncoding="UTF-8"%>

  34. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

  35. <html>

  36. <head>

  37. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

  38. <title>服务按某种需求向页面推送消息Demo</title>

  39. <script type="text/javascript" src='../js/jquery-1.10.2.js'></script>

  40. <script type="text/javascript" src='../js/ajax-pushlet-client.js'></script>

  41. <script type="text/javascript">

  42. //启动监听

  43. function begin(){

  44. PL._init();

  45. PL.joinListen('/pushlet/auto');

  46. }

  47.  
  48. var xhr = new XMLHttprequest();

  49. //触发服务方法,使其向页面推送消息

  50. function trigger(){

  51. var count = $("#count").text();

  52. var url = PL.webRoot + "PushletServlet?count=" + count;

  53. xhr.open("get", url, true);

  54. xhr.send(null);

  55. }

  56.  
  57. //Pushlet的js中封装方法,产生消息

  58. function onData(event) {

  59. $("#count").text(event.get("message"));

  60. }

  61.  
  62. function stop(){

  63. //离开

  64. PL.leave();

  65. }

  66. </script>

  67. </head>

  68. <body>

  69. <p style="margin:0px auto;width:600px;height:400px;background:#eee;border-radius:5px;">

  70. <button href="../index.jsp">返回</a>

  71. <button style="color:red;">0</span>次消息</center>

  72. <button + format(new Date())));

  73. Dispatcher.getInstance().unicast(event, "niko");//向ID为niko的用户推送

  74. }

  75.  
  76. }

  77.  
  78. /**

  79. * @see HttpServlet#doPost(HttpServletRequest request, HttpServletresponse response)

  80. */

  81. protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

  82. doGet(request, response);

  83. }

  84.  
  85. }

web客户端代码如下(这里我的jsp文件名为one_to_one_get_pull.jsp):


 
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"

  2. pageEncoding="UTF-8"%>

  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

  4. <html>

  5. <head>

  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

  7. <title>服务按某种需求向页面推送消息Demo</title>

  8. <script type="text/javascript" src='../js/jquery-1.10.2.js'></script>

  9. <script type="text/javascript" src='../js/ajax-pushlet-client.js'></script>

  10. <script type="text/javascript">

  11. //启动监听

  12. function begin(){

  13. PL.userId ="niko";

  14. PL._init();

  15. PL.joinListen("/pushlet/onetoone");

  16. }

  17.  
  18. var xhr = new XMLHttpRequest();

  19. //触发服务方法,使其向页面推送消息

  20. function trigger(){

  21. var url = PL.webRoot + "OneToOneServlet?";

  22. xhr.open("get", url, true);

  23. xhr.send(null);

  24. }

  25.  
  26. //Pushlet的js中封装方法,产生消息

  27. function onData(event) {

  28. //用decodeURIcomponent方法解码

  29. $("#message").text(decodeURIComponent(event.get("message")));

  30. }

  31.  
  32. function stop(){

  33. //离开

  34. PL.leave();

  35. }

  36. </script>

  37. </head>

  38. <body>

  39. <p style="margin:0px auto;width:600px;height:400px;background:#eee;border-radius:5px;">

  40. <button href="../index.jsp">返回</a>

  41. <button style="color:red;"></span></center>

  42. <button onclick="stop();">停监听止</button>

  43. <fieldset style="margin-top:30px;padding:0px;width:596px;height:auto;">

  44. <legend>描述</legend>

  45. <p style="text-indent:2em;font-size:12px;">

  46. 点对点推送消息,这种方式需要重写或改写sessionManager类,然后在pushlet.properties配置文件中的sessionmanager.class属性域改写的SessionManger类路径对应,并在pushlet的js中添加userId属性,并添加传递参数的代码。若不在js中添加userId(次要),不重写Session的createSession方法,则默认所有请求、监听都使用默认创建的Session用户visitor。

  47. </p>

  48. <p style="text-indent:2em;font-size:12px;">

  49. PS:pushlet推送消息不能直接推送中文,需要进行转码再推送。通过方法SessionManager.getInstance().hasSession("niko")获取的boolean值反应该用户是否处于监听状态,若用户已在监听,则返回true,若已调用PL.leave()方法,则SessionManager.getInstance().hasSession("niko")的返回值为false。Event的getField方法的第二个参数为当传递参数中不存在第一个参数字段时默认使用的值。

  50. </p>

  51. </fieldset>

  52. </p>

  53. </body>

  54. </html>

这样,即实现了消息的点对点推送。这里改写SessionManger并配置不会影响前两种推送方式的执行。 --------------------- 本文来自 第三眼的思绪 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/a123638/article/details/40652555?utm_source=copy

相关阅读

pushlet 传递页面request参数

原帖地址:http://blog.csdn.net/meikidd/article/details/7446778最近项目中有服务器端推送的需求,考察了一下,感觉pushlet比较适合

分享到:

栏目导航

推荐阅读

热门阅读