java推送之spring-websocket

准备

导入依赖

 compile group: 'org.springframework', name: 'spring-messaging', version: '4.3.3.RELEASE'
 compile group: 'org.springframework', name: 'spring-websocket', version: '4.3.3.RELEASE'

方式一

<bean id="websocket" class="net.rock.projects.orp.web.websocket.WebsocketEndPoint" />
<websocket:handlers allowed-origins="*">  
    <websocket:mapping path="/websocket" handler="websocket"/>  
    <websocket:handshake-interceptors>  
    <bean class="com.up.websocket.HandshakeInterceptor"/>  
    </websocket:handshake-interceptors>  
</websocket:handlers>  

其中,path对应的路径就是前段通过ws协议调的接口路径
创建握手接口(拦截器)

public class HandshakeInterceptor extends HttpSessionHandshakeInterceptor {
    @Override
    public boolean beforeHandshake(ServerHttpRequest request,
                                   ServerHttpResponse response, WebSocketHandler wsHandler,
                                   Map<String, Object> attributes) throws Exception {

        HttpServletRequest servletRequest = ((ServletServerHttpRequest) request).getServletRequest();
        HttpSession session = servletRequest.getSession(false);
        User user = (User) session.getAttribute("token");

        if(user!=null){
            attributes.put("token", user);
        }
        return super.beforeHandshake(request, response, wsHandler, attributes);
    }

    @Override
    public void afterHandshake(ServerHttpRequest request,
                               ServerHttpResponse response, WebSocketHandler wsHandler,
                               Exception ex) {
        super.afterHandshake(request, response, wsHandler, ex);
    }
}

创建处理类

@Component
public class WebsocketEndPoint extends TextWebSocketHandler {

    @Autowired
    IProjectDeliverService iProjectDeliverService;
    @Autowired
    IProjectDeliverReplyService iProjectDeliverReplyService;
    @Autowired
    private IUserService iUserService;

    /**
     * 所有的用户
     */
    private static final Map<Integer , WebSocketSession > users ;

    static{
        users = new HashMap<>();
    }

    @Override
    protected void handleTextMessage(WebSocketSession session,
                                     TextMessage message) throws Exception {

        super.handleTextMessage(session, message);
        session.sendMessage(message);
    }
    @Override
    public void afterConnectionEstablished(final WebSocketSession session) throws Exception {

        User user = (User) session.getAttributes().get("token");
        if(user != null)
            users.put(user.getId() , session);
    }

    @Override
    public void afterConnectionClosed(WebSocketSession session, CloseStatus status) throws Exception {

        User user = (User) session.getAttributes().get("token");

        // 如果用户对象还存在内存中,那么不进行退出记录
        if(user != null){
            iUserService.exit(DateUtils.dateToString(new Date()),user.getId());
            System.out.println(user.getNickName()+" exits from the system ! Connection Closed!");
        }
    }


    /**
     * 发送给指定用户
     * @param userIds    用户编号数组,不传(长度=0) 默认发送给所有用户
     * @param message   消息内容
     */
    public static void sendToUser( TextMessage message , List<Integer> userIds){
        try {
            // 如果没有传用户编号 , 默认发送给所有用户
            if(userIds == null || userIds.size() == 0){
                if(users.keySet() != null && users.keySet().size() > 0 ){
                    for (Integer key : users.keySet()) {
                        if(users.get(key).isOpen())
                            users.get(key).sendMessage(message);
                    }
                }
            }else{  // 发送给指定的用户

                for (Integer id : userIds) {
                    if(users.containsKey(id) && users.get(id).isOpen()){
                        users.get(id).sendMessage(message);
                    }
                }

            }
        }catch (IOException e){
            e.printStackTrace();
        }
    }
}

用户页面连接(sockjs-0.3.min.js自行下载)

<script src="<%=resourcePath%>js/sockjs-0.3.min.js"></script>
<script>
    var ws = null;
    var url = "ws://<%=basePath.replace("http://","")%>/msgcenter?uid=20125";

    function socketConnection(){
        if (!url) {
            alert('Select whether to use W3C WebSocket or SockJS');
            return;
        }

        ws = new WebSocket(url); //申请一个WebSocket对象

        ws.onopen = function () {
            console.info("连接已经打开。。。。。。");
        };
        ws.onmessage = function (event) {
            console.info("你接受到消息是:"+event.data);
                }
            }
        };
        ws.onclose = function (event) {
            console.info("连接已经断开。。。。。" );
        };
    }
 $(function(){
        socketConnection();
    });
</script>

后台调用sendToUser给指定用户发送信息

.................................................................................................

方式二

websocket入口

@Configuration
@EnableWebMvc
@EnableWebSocket
public class WebSocketConfig extends WebMvcConfigurerAdapter implements WebSocketConfigurer {
    @Override
    public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {
        //setAllowedOrigins("*") 解决跨域问题
        registry.addHandler(systemWebSocketHandler(),"/webSocketServer").addInterceptors(new WebSocketHandshakeInterceptor()).setAllowedOrigins("*");

        registry.addHandler(systemWebSocketHandler(), "/sockjs/webSocketServer").addInterceptors(new WebSocketHandshakeInterceptor()).withSockJS();
    }

    @Bean
    public WebSocketHandler systemWebSocketHandler(){
        return new SystemWebSocketHandler();
    }

}

拦截器,beforeHandshake在调用handler前处理方法。常用在注册用户信息,绑定WebSocketSession,在handler里根据用户信息获取WebSocketSession发送消息。

public class WebSocketHandshakeInterceptor implements HandshakeInterceptor {
    @Override
    public boolean beforeHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Map<String, Object> attributes) throws Exception {


        if (request instanceof ServletServerHttpRequest) {
            ServletServerHttpRequest servletRequest = (ServletServerHttpRequest) request;
            HttpSession session = servletRequest.getServletRequest().getSession(false);
            if (session != null) {
                //使用userName区分WebSocketHandler,以便定向发送消息
                attributes.put("userId",session.getAttribute("userId"));
            }
        }
        return true;
    }

    @Override
    public void afterHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Exception exception) {

    }
}

handle处理器

public class SystemWebSocketHandler implements WebSocketHandler {

    private static final Map<String,WebSocketSession> users;

    static {
        users = new HashMap<>();
    }


    @Override
    public void afterConnectionEstablished(WebSocketSession session) throws Exception {

        String userId = (String) session.getAttributes().get("userId");
        if(userId !=null){
            users.put(userId,session);
        }
        session.sendMessage(new TextMessage("hello world"));
        System.out.println("建立连接");
    }

    @Override
    public void handleMessage(WebSocketSession session, WebSocketMessage<?> message) throws Exception {

    }

    @Override
    public void handleTransportError(WebSocketSession session, Throwable exception) throws Exception {
        System.out.println("连接被关闭");
        for (Map.Entry<String, WebSocketSession> entry : users.entrySet()) {
            if(entry.getValue().equals(session)){
                users.remove(entry.getKey());
            }
        }
    }

    @Override
    public void afterConnectionClosed(WebSocketSession session, CloseStatus closeStatus) throws Exception {
        System.out.println("连接被关闭");
        users.remove(session);
    }

    @Override
    public boolean supportsPartialMessages() {
        return false;
    }

    /**
     * 给某个用户发送消息
     *
     * @param userId
     * @param message
     */
    public static void  sendMessageToUser(String userId, TextMessage message) throws IOException {
        Set<Map.Entry<String, WebSocketSession>> entries = users.entrySet();
        for (Map.Entry<String, WebSocketSession> entry : entries) {
            if(entry.getKey().equals(userId))
                entry.getValue().sendMessage(message);
        }
    }
}

用户建立socket连接(sockjs-0.3.min.js自行下载)

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
  String path = request.getContextPath();
  String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path;
  String url = request.getServerName()+":"+request.getServerPort()+path;
%>
<html>
  <head>
    <title>index</title>
  </head>
  <body>
    <h3 align="center">
      消息通知:<span id="msg"></span>
    </h3>
  </body>
</html>
<script src="<%=basePath%>/js/jquery-1.9.1.min.js"></script>
<script src="<%=basePath%>/js/sockjs-0.3.min.js"></script>
<script>
    var websocket;
    if ('WebSocket' in window) {
        websocket = new WebSocket("ws://<%=url%>/webSocketServer?userId=1");
    } else if ('MozWebSocket' in window) {
        websocket = new MozWebSocket("ws://<%=url%>/webSocketServer?userId=1");
    } else {
        websocket = new SockJS("http://<%=url%>/sockjs/webSocketServer?userId=1");
    }
    websocket.onopen = function (evnt) {
        console.info("连接已建立")
    };
    websocket.onmessage = function (evnt) {
        console.info("本次推送内容是:"+evnt.data);
        $("#msg").html(evnt.data)
    };
    websocket.onerror = function (evnt) {
        console.info("连接已断开")
    };
    websocket.onclose = function (evnt) {
        console.info("连接已断开")
    }

</script>

调用 sendMessageToUser推送信息

/**
     * 消息推送
     * @param msg  消息内容
     * @param userId 推送用户id
     */
    @RequestMapping(value = "pushMsg",method = RequestMethod.POST)
    @ResponseBody
    public String pushMsg(String userId, String msg) {
        System.out.println("用户id:"+userId+"    推送的消息:"+msg);
        try {
            SystemWebSocketHandler.sendMessageToUser(userId,new TextMessage(msg));
            return new Gson().toJson("success");
        } catch (Exception e) {
            System.out.println(e.getMessage()+"................");
            e.printStackTrace();
            return new Gson().toJson("fail:"+e);
        }
    }

相关链接
http://www.bridgeli.cn/archives/262
https://my.oschina.net/ldl123292/blog/304360
http://www.cnblogs.com/nosqlcoco/p/5860730.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,599评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,498评论 25 707
  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,581评论 18 399
  • 版权归作者所有,任何形式转载请联系作者。 作者:楊從周(来自豆瓣) 来源:https://www.douban.c...
    没房没车农村户口阅读 343评论 0 0
  • 感觉快被小臭孩弄成抑郁症了,他爸爸还有奶奶给他养的坏习惯要让我来改正,真的耐心不足。不过总的来说今天进步了一些,虽...
    冰糖糖冰阅读 136评论 1 0