JAVA Web实时消息后台服务器推送技术---GoEasy

2019-04-25 06:53:49来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

---恢复内容开始---

越来越多的项目需要用到实时消息的推送与接收,我这里推荐大家使用GoEasy, 它是一款第三方推送服务平台,使用它的API可以轻松搞定实时推送!

浏览器兼容性:GoEasy推送 支持websocket 和polling两种连接方式,从而可以支持IE6及其以上的所有版本,同时还支持其它浏览器诸如Firefox, Chrome, Safari等等。

支持不同的开发语言:GoEasy推送 提供了Restful API接口,无论你的后台程序用的是哪种语言都可以通过Restful API来实现后台实时推送。如:Java,PHP, C#, Ruby, Python, C, C++, ASP.NET,Node.js...

支持后台及前台推送: 后台用Restful API, 前台用goeasy.js; 运用十分简单!

下面我介绍一下使用GoEasy的步骤:

 1. 你需要到goeasy官网上注册一个账号,并创建一个应用,应用创建好后系统会默认为它生成两个key: publish key和subscribe key

 2. 前台实时订阅及接收

只需要引入goeasy.js,然后调用goeasy的subscribe方法订阅一个channel即可,订阅时无论是用publish key还是subscribe key都可以。通过subscribe的参数 onMessage的回调函数可以实时接收到消息。

 3. 前台实时推送

还是需要引入goeasy.js(如果该页面已经引入了可不在引入),然后调用goeasy的publish方法向已订阅的channel上推送消息即可,推送时只能用publish key。

 4. 后台实时推送

调用GoEasy Restful API, 用post方式访问http://goeasy.io/goeasy/publish, 同时还需要带上三个必要参数:

  • appkey: publish key
  • channel: 你订阅了的channel
  • content: 推送内容

 就是这么简单。

推送的原理:GoEasy的实现原理很简单,就是推送消息的一端只负责推送,而需要接收的页面需要预先订阅。订阅什么呢?订阅channel。往 某个channel上推送消息,客户端就订阅相同的channel,这样就可以确保准确接收。通过channel我们可以自己指定哪些页面或哪些用户可以 接收到从这个channel上推送出来的消息。

下面我将之前写的一个小实例贴出来,里面用了Javascript 在web页面进行订阅,推送,接收,以及取消订阅的例子,里面的appkey用的是goeasy官方的demo 的appkey.

 1 <html>
 2 <head>
 3 <title>GoEasy Test</title>
 4  
 5 <script type="text/javascript" src="https://cdn.goeasy.io/goeasy.js"></script>
 6 <script type="text/javascript">
 7   if(typeof GoEasy !== 'undefined'){
 8     var goEasy = new GoEasy({
 9       appkey: 'ba821151-e043-4dfb-a954-c73744c8d323',
10       userId:"222",
11       username:"22",
12       onConnected:function(){
13         console.log("Connect to GoEasy success.");
14       } ,
15       onDisconnected:function(){
16         console.log("Disconnect to GoEasy server.");
17       } ,
18       onConnectFailed:function(error){
19         console.log("Connect to GoEasy failed, error code: "+ error.code+" Error message: "+ error.content);
20       }
21     });
22   }
23        
24   subscribe();
25   function subscribe(){
26        goEasy.subscribe({
27         channel: 'notification',
28         onMessage: function(message){
29           console.log('Meessage received:'+message.content);
30         },
31         onSuccess:function(){
32  
33           console.log("Subscribe the Channel successfully.");
34  
35         },
36  
37         onFailed: function(error){
38  
39           console.log("Subscribe the Channel failed, error code: "+ error.code + " error message: "+ error.content);
40  
41         }
42  
43       });
44  
45   }
46        
47    function publishMessage(){
48      goEasy.publish({
49         channel: 'notification',
50         message: 'You received a new notification',
51         onSuccess:function(){
52  
53           console.log("Publish message success.");
54  
55         },
56         onFailed: function(error){
57  
58           console.log("Publish message failed, error code: "+ error.code +" Error message: "+ error.content);
59  
60         }
61       });
62     
63    }
64           
65    function unsubscribe(){
66         goEasy.unsubscribe({
67           channel:"notification",
68           onSuccess: function(){
69  
70             console.log("Cancel Subscription successfully.");
71  
72           },
73           onFailed: function(error){
74  
75             console.log("Cancel the subscrition failed, error code: "+ error.code + "error message: "+ error.content);
76           }
77  
78         });
79       }
80      
81  </script>
82 </head>
83 <body>
84  <input type="button" value="publish" onclick="publishMessage()"/>
85  <input type="button" value="unsubscribe" onclick="unsubscribe()"/>
86  <input type="button" value="subscribe" onclick="subscribe()"/>
87 </body>
88 </html>

以上就是本文的全部内容,希望对大家的学习有所帮助,也喜欢大家多多关注我的博客。 


 

 微信扫码,欢迎关注微信公众账号,更多精彩~

           手机扫码加入QQ群,欢迎你~

 


原文链接:https://www.cnblogs.com/zhanlaoshi/p/10755140.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:初学Shiro

下一篇:分布式架构原理解析,Java开发必修课