在实际的开发中,我们可能会有这样的场景:许多客户端都连接到服务器端,当有某个客户端的消息的时候,服务器端会主动"推"消息给客户端,手机app的推送是一个典型的场景(IOS的推送都是要经过苹果的服务器的,一般是通过苹果的APNS服务来实现,不需要做过多的开发,安卓的推送就需要我们自己来实现了)

我们可选的技术方案实际上是很多的,使用netty这样的异步的网络通信框架或者servlet容器提供的异步的方案都是可以实现的,它们的理念都是一样的,异步和事件驱动,客户端请求服务器,当服务器没有需要推送的数据(或者是需要执行很长时间的IO操作)的时候,请求会被挂起,当服务器端的数据准备好的时候(例如需要向客户端推送一个消息的时候,或者是服务器端IO操作执行完毕了)请求会被重新激活,数据返回客户端.

使用jetty的continuations或者是netty来实现这两种是我觉得比较好的实现方案,今天介绍一下如何使用jetty的continuations来实现一个服务器推的原型,和正式环境中向安卓手机的推送的实现方法是完全一样的

continuations介绍:jetty的continuations是jetty实现的实现异步请求和事件驱动的组件,从jetty7起,continuations不止在jetty中可以使用,任何支持servlet3.0规范的servlet容器都可以使用continuations来实现异步和事件驱动,相比servlet3.0规范中的异步servlet,continuations提供了更加简化的编程模型.

目标:用浏览器请求服务器的一个URL(用浏览器来模拟我们的客户端),实现任何时候当服务器需要推送数据的时候,浏览器能够立即显示出来

我们需要提供两个接口:提供给客户端做长连接的接口,向客户端发送数据的接口

提供给客户端连接的servlet:

package com.jiaoyiping.websample.asyncServlet.jetty;
/*
* Created with Intellij IDEA
* USER: 焦一平
* Mail: jiaoyiping@gmail.com
* Date: 2016/10/23
* Time: 23:52
* To change this template use File | Settings | Editor | File and Code Templates
*/ import org.eclipse.jetty.continuation.Continuation;
import org.eclipse.jetty.continuation.ContinuationListener;
import org.eclipse.jetty.continuation.ContinuationSupport;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.Map; @WebServlet(urlPatterns = "/pull", asyncSupported = true)
public class ContinuationServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String user = req.getParameter("user");
Map<String, PushAgent> pushAgentMap = (Map<String, PushAgent>) req.getServletContext().getAttribute("agentmap");
if (pushAgentMap.containsKey(user)) {
PushAgent pushAgent = pushAgentMap.get(user);
Continuation continuation = ContinuationSupport.getContinuation(req);
continuation.setTimeout(90000000);
//第一次请求进来
if (continuation.isInitial()) {
resp.setContentType("text/evf;charset=utf-8");
resp.setHeader("Connection", "keep-alive");
resp.setHeader("Keep-Alive", "timeout=2000");
PushAdapter pushAdapter = new PushAdapter(continuation, pushAgent);
continuation.setAttribute("adapter", pushAdapter);
continuation.addContinuationListener(new ContinuationListener() {
@Override
public void onComplete(Continuation continuation) {
PushAdapter adapter = (PushAdapter) continuation.getAttribute("adapter");
if (null != adapter) {
continuation.setAttribute("adapter", null);
}
} @Override
public void onTimeout(Continuation continuation) {
onComplete(continuation);
} });
resp.flushBuffer();
}
if (continuation.isExpired()) {
return;
}
Writer writer = getWriter(resp);
PushAdapter adapter = (PushAdapter) continuation.getAttribute("adapter");
Message message;
while (true) {
message = adapter.getPushAgent().pull();
if (null == message)
break;
try {
writer.write(message.getContent());
writer.flush();
writer.write("\r\n");
writer.flush();
resp.flushBuffer();
} catch (Exception e) {
throw e; }
}
//若没有该客户端的消息,则请求被挂起
continuation.suspend();
} } private Writer getWriter(HttpServletResponse response) throws IOException {
OutputStream os = response.getOutputStream();
return new OutputStreamWriter(os, "UTF-8");
} }

向客户端推送消息的servlet:

package com.jiaoyiping.websample.asyncServlet.jetty;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Map; /*
* Created with Intellij IDEA
* USER: 焦一平
* Mail: jiaoyiping@gmail.com
* Date: 2016/10/25
* Time: 23:46
* To change this template use File | Settings | Editor | File and Code Templates
*/
@WebServlet(urlPatterns = "/send")
public class MesssageSendServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//不要在自己实现的servlet中调用 super.doGet(0)或者是super.doPost()
//因为在tomcat它们的默认实现是报405(HTTP1.1)或者400(其他版本的HTTP)
// super.doPost(req, resp); String target = req.getParameter("target");
String messageStr = req.getParameter("message"); Map<String, PushAgent> agentMap = (Map<String, PushAgent>) req.getServletContext().getAttribute("agentmap");
if (agentMap.keySet().contains(target)) {
Message message = new Message();
message.setTarget(target);
message.setContent(messageStr);
if (agentMap.get(target).isInited()) {
agentMap.get(target).onEvent(message);
}
agentMap.get(target).send(message);
PrintWriter out = resp.getWriter();
out.print("发送成功");
out.flush();
out.close();
} } @Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doPost(req, resp);
}
}

推送代理:就是可以拿到客户端相关信息,并且维护客户端消息队列的类,在这个推送代理中,我们可以加入一个监听器,当有数据需要推送的时候,激活请求

package com.jiaoyiping.websample.asyncServlet.jetty;
/*
* Created with Intellij IDEA
* USER: 焦一平
* Mail: jiaoyiping@gmail.com
* Date: 2016/10/25
* Time: 22:56
* To change this template use File | Settings | Editor | File and Code Templates
*/ public interface PushAgent { Terminal getTerminal(); String getAddress(); String getToken(); Message send(Message message); Message pull(); void addListener(MessageListener messageListener); void onEvent(Message message); boolean isInited();
}

默认实现(每个需要接受推送的用户对应一个PushAgent,和用户端保持长连接的线程从queue里读取mesage对象,向某个用户推送的时候将message对象放到该用户对应的PushAgent的queue里,这里是一个生产者-消费者模式):

package com.jiaoyiping.websample.asyncServlet.jetty;
/*
* Created with Intellij IDEA
* USER: 焦一平
* Mail: jiaoyiping@gmail.com
* Date: 2016/10/25
* Time: 23:17
* To change this template use File | Settings | Editor | File and Code Templates
*/ import java.util.PriorityQueue;
import java.util.Queue; public class DefaultPushAgent implements PushAgent { private Terminal terminal;
//客户端通过长连接连接到服务器时,服务器不断地从该队列poll(),若果拿到新的消息,则返回给客户端
private Queue<Message> messages = new PriorityQueue<>();
private MessageListener messageListener; @Override
public Terminal getTerminal() {
return this.terminal;
} @Override
public String getAddress() {
return null;
} @Override
public String getToken() {
return null;
} @Override
public Message send(Message message) {
synchronized (message) {
messages.add(message);
} return message;
} @Override
public Message pull() {
synchronized (messages) {
return messages.poll();
} } @Override
public void addListener(MessageListener messageListener) {
this.messageListener = messageListener;
} @Override
public void onEvent(Message message) {
this.messageListener.onMessage(message);
} @Override
public boolean isInited() {
return this.messageListener != null;
} public DefaultPushAgent(Terminal terminal) {
this.terminal = terminal;
}
}
PushAdapter的实现(用户将Continuation和PushAgent关联起来):
package com.jiaoyiping.websample.asyncServlet.jetty;
/*
* Created with Intellij IDEA
* USER: 焦一平
* Mail: jiaoyiping@gmail.com
* Date: 2016/10/25
* Time: 23:37
* To change this template use File | Settings | Editor | File and Code Templates
*/ import org.eclipse.jetty.continuation.Continuation; public class PushAdapter {
private Continuation continuation;
private PushAgent pushAgent; public PushAdapter(Continuation continuation, PushAgent pushAgent) {
this.continuation = continuation;
this.pushAgent = pushAgent;
this.pushAgent.addListener(message -> {
if (PushAdapter.this.continuation.isSuspended()) {
PushAdapter.this.continuation.resume();
}
});
} public Continuation getContinuation() {
return continuation;
} public void setContinuation(Continuation continuation) {
this.continuation = continuation;
} public PushAgent getPushAgent() {
return pushAgent;
} public void setPushAgent(PushAgent pushAgent) {
this.pushAgent = pushAgent;
}
}

MessageListener的实现(监听需要推送消息的事件,这里为了做演示,并没有实现一个完整的观察者模式,只是在需要推送消息的时候,手工调用 onMessage()):

package com.jiaoyiping.websample.asyncServlet.jetty;
/*
* Created with Intellij IDEA
* USER: 焦一平
* Mail: jiaoyiping@gmail.com
* Date: 2016/10/26
* Time: 2:03
* To change this template use File | Settings | Editor | File and Code Templates
*/ public interface MessageListener {
void onMessage(Message message);
}

测试数据:使用一个listener在应用初始化的时候,初始化一些数据做为测试数据

package com.jiaoyiping.websample.asyncServlet.jetty;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;
import java.util.HashMap;
import java.util.Map; /*
* Created with Intellij IDEA
* USER: 焦一平
* Mail: jiaoyiping@gmail.com
* Date: 2016/10/25
* Time: 23:55
* To change this template use File | Settings | Editor | File and Code Templates
*/
@WebListener
public class PushListener implements ServletContextListener {
@Override
public void contextInitialized(ServletContextEvent sce) {
Map<String, PushAgent> agentMap = new HashMap<>();
agentMap.put("zhangsan", new DefaultPushAgent(new Terminal() {{
setAddress("zhangsan");
setToken("zhangsan_token");
}}));
agentMap.put("lisi", new DefaultPushAgent(new Terminal() {{
setAddress("lisi");
setToken("lisi_token");
}})); sce.getServletContext().setAttribute("agentmap",agentMap);
} @Override
public void contextDestroyed(ServletContextEvent sce) { }
}

最终的效果是这样的,我截了一个git图:

使用jetty的continuations实现"服务器推"的更多相关文章

  1. SSE技术详解:一种全新的HTML5服务器推送事件技术

    前言 一般来说,Web端即时通讯技术因受限于浏览器的设计限制,一直以来实现起来并不容易,主流的Web端即时通讯方案大致有4种:传统Ajax短轮询.Comet技术.WebSocket技术.SSE(Ser ...

  2. Web端服务器推送技术原理分析及dwr框架简单的使用

    1 背景 “服务器推送技术”(ServerPushing)是最近Web技术中最热门的一个流行术语.它是继“Ajax”之后又一个倍受追捧的Web技术.“服务器推送技术”最近的流行跟“Ajax ”有着密切 ...

  3. HTML5 服务器推送事件(Server-sent Events)实战开发

    转自:http://www.ibm.com/developerworks/cn/web/1307_chengfu_serversentevent/ http://www.ibm.com/develop ...

  4. “服务器推”技术【转载+整理】

    原文地址 本文内容 "服务器推(server-push)"技术的应用 基于客户端套接口的"服务器推"技术 基于 HTTP 长连接的"服务器推" ...

  5. Comet:基于 HTTP 长连接的“服务器推”技术(转载)

    “服务器推”技术的应用 传统模式的 Web 系统以客户端发出请求.服务器端响应的方式工作.这种方式并不能满足很多现实应用的需求,譬如: 监控系统:后台硬件热插拔.LED.温度.电压发生变化: 即时通信 ...

  6. HTML5中的SSE(服务器推送技术)

    本文原链接:https://cloud.tencent.com/developer/article/1194063 SSE技术详解:一种全新的HTML5服务器推送事件技术 前言 概述 基本介绍 与We ...

  7. 浅入浅出“服务器推送”之一:Comet简介

    最近有个项目,其中有项需求要从服务器端主动向客户端推送数据,本以为很简单,但在实际做的过程中发现很棘手,并没有想象中的简单.从网上搜索学习,发现主流讲的还是Ajax的长轮询技术或者流技术,websoc ...

  8. Comet:基于 HTTP 长连接的“服务器推”技术解析

    原文链接:http://www.cnblogs.com/deepleo/p/Comet.html 一.背景介绍 传统web请求,是显式的向服务器发送http Request,拿到Response后显示 ...

  9. Comet:基于 HTTP 长连接的“服务器推”技术

    “服务器推”技术的应用 请访问 Ajax 技术资源中心,这是有关 Ajax 编程模型信息的一站式中心,包括很多文档.教程.论坛.blog.wiki 和新闻.任何 Ajax 的新信息都能在这里找到. c ...

随机推荐

  1. titlesplit源码

    ) UNSIGNED NOT NULL AUTO_INCREMENT, innserSessionid ), times ), channelType ), sourcetitle ), title ...

  2. js准确获取当前页面url网址信息

    这篇文章主要为大家介绍了js准确获取当前页面url网址信息的多种方法,包括正则法.split拆分法等,需要的朋友可以参考下   在WEB开发中,时常会用到javascript来获取当前页面的url网址 ...

  3. 深入理解Java虚拟机(一)

    一.运行时数据区域 ​ 1.程序计数器: 当前线程执行字节码的行号指示器(通过改变计数器的值来选择下条需要执行的字节码指令) 每个线程有独立的程序计数器(线程私有,为了切换线程时能恢复到挣钱的执行位置 ...

  4. innodb分区

    当 MySQL的总记录数超过了100万后,性能会大幅下降,可以采用分区方案 分区允许根据指定的规则,跨文件系统分配单个表的多个部分.表的不同部分在不同的位置被存储为单独的表. 1.先看下innodb的 ...

  5. ESPCN超分辨率汇总

    Real-Time Single Image and Video Super-Resolution Using an Efficient Sub-Pixel Convolutional Neural ...

  6. C++的UML类图

    OOAD(object-oriented analysis and design)面向对象分析和设计 UML(Unified Modeling Language)统一建模语言.可以清晰表达任何OOAD ...

  7. windows 环境下 ping 加时间戳 记日志

    在c盘下面新建文件 ping.vbs 在 ping.vbs中输入代码如下: Dim args, flag, unsuccOut args="" otherout="&qu ...

  8. Centos7系统配置上的变化

    https://www.cnblogs.com/panblack/p/Centos7-WhatsNew-01.html https://www.cnblogs.com/panblack/p/Cento ...

  9. Jquery/js submit()无法提交问题

    有朋友可能会直接利用js或jquery来提交数据而不是使用表单直接提交了,小编来给大家介绍小编碰到的一个问题就是 submit()无法提交,下面我们来看解决办法与原因分析. jquery无法提交  代 ...

  10. .Net使用DES加密,.Net和java分别解密,并正则匹配替换加密密码为明文

    在VS中用WindowsApplication做一个exe程序,用来给数据库密码加密,加密代码如下 private void generateBtn_Click(object sender, Even ...