java websocket框架_spring框架下websocket的搭建

本文基于Apach Tomcat 8.0.3+MyEclipse+maven+JDK1.7

spring4.0以后加入了对websocket技术的支持,撸主目前的项目用的是SSM(springMVC+spring+MyBatis)框架,所以肯定要首选spring自带的websocket

1 在maven的pom.xml中加入websocket所依赖的jar包

com.fasterxml.jackson.core

jackson-core

2.4.0

com.fasterxml.jackson.core

jackson-databind

2.4.0

org.springframework

spring-websocket//version须和spring mvc的version保持一致,否则会出现问题

4.0.5.RELEASE

org.springframework

spring-messaging

4.0.5.RELEASE

2 更新spring-mvc.xml中namespace.xsd的版本

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xmlns:websocket="http://www.springframework.org/schema/websocket"

xsi:schemaLocation="

http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd

http://www.springframework.org/schema/websocket http://www.springframework.org/schema/websocket/spring-websocket.xsd">

处理类和握手协议的spring配置(applicationContext.xml文件)

webconfig

@Override

public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {

registry.addHandler(new HelloHandler(), "/hello").addInterceptors(new HandshakeInterceptor()).withSockJS().setHttpMessageCacheSize(20000);

}

3 创建握手(handshake)接口

public class HandshakeInterceptor extends HttpSessionHandshakeInterceptor {

@Override

public boolean beforeHandshake(ServerHttpRequest arg0,

ServerHttpResponse arg1, WebSocketHandler arg2,

Map arg3) throws Exception {

System.out.println("---- Before Handshake ----");

return super.beforeHandshake(arg0, arg1, arg2, arg3);

}

@Override

public void afterHandshake(ServerHttpRequest request,

ServerHttpResponse response, WebSocketHandler wsHandler,

Exception ex) {

System.out.println("---- After Handshake ----");

super.afterHandshake(request, response, wsHandler, ex);

}

}

4  创建websocket处理类

public class HelloHandler extends TextWebSocketHandler {

public static List users;

static{

users = new ArrayList();

}

@Override

public void handleTextMessage(WebSocketSession session, TextMessage message) {

//接收到客户端消息时调用

System.out.println("text message: " + session.getId() + "-" + message.getPayload());

}

@Override

public void afterConnectionEstablished(WebSocketSession session)

throws Exception {

// 与客户端完成连接后调用

System.out.println("afterConnectionEstablished");

System.out.println("getId:" + session.getId());

System.out.println("getLocalAddress:" + session.getLocalAddress().toString());

System.out.println("getTextMessageSizeLimit:" + session.getTextMessageSizeLimit());

System.out.println("getUri:" + session.getUri().toString());

System.out.println("getPrincipal:" + session.getPrincipal());

System.out.println(soslistService.getsss());

session.sendMessage(new TextMessage("你好"));

users.add(session);

}

@Override

public void handleTransportError(WebSocketSession session,

Throwable exception) throws Exception {

// 消息传输出错时调用

System.out.println("handleTransportError");

}

@Override

public void afterConnectionClosed(WebSocketSession session,

CloseStatus closeStatus) throws Exception {

// 一个客户端连接断开时关闭

System.out.println("afterConnectionClosed");

}

@Override

public boolean supportsPartialMessages() {

// TODO Auto-generated method stub

return false;

}

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值