WebSocket实现方式一

Tomcat方式实现WebSocket

Oracle官方规范定义了一组用于开发web socket应用的Java API,请参见:

http://www.oracle.com/technetwork/articles/java/jsr356-1937161.html

用到的包如下:

javax.websocket.server包含注解,类,接口用于创建和配置服务端点

javax.websocket包含服务端和客户端公用的注解,类,接口,异常

主类有两种创建的方式:

Interface-Driven Approach 编程式的实现,需要继承Endpoint类,重写它的方法
public class myOwnEndpoint extends javax.websocket.Endpoint {
 public void onOpen(Session session, EndpointConfig config) {...}
 public void onClose(Session session, CloseReason closeReason) {...}
 public void onError (Session session, Throwable throwable) {...}
}
  ```
  Annotation-Driven Approach 注解式的实现,将自己的写的类以及类中的一些方法用前面提到的包中的注解装饰(@EndPoint,@OnOpen等等)

@ServerEndpoint("/websocket") public class WebSocketTest { @OnOpen public void start(Session session){ System.out.println("连接成功! " + session.getId()); }

@OnMessage
public void reMessage(Session session, String str){
    try
    {
        session.getBasicRemote().sendText(str + " who are you");
    }catch (IOException e){
        e.printStackTrace();
    }
}

@OnError
public void error(Session session, Throwable t){
    t.printStackTrace();
}

@OnClose
public void close(){
}
当创建好一个(服务)端点之后,将它以一个指定的URI发布到应用当中,这样远程客户端就能连接上它了。 
    Websocket(服务)端点以URI表述,有如下的访问方式:

ws://host:port/path?query wss://host:port/path?query


实例代码如下

    JAVA类:

package me.gacl.websocket;

import java.io.IOException; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.CopyOnWriteArraySet;

import javax.servlet.http.HttpSession; import javax.websocket.OnClose; import javax.websocket.OnError; import javax.websocket.OnMessage; import javax.websocket.OnOpen; import javax.websocket.Session; import javax.websocket.server.ServerEndpoint;

/**

  • @ServerEndpoint 注解是一个类层次的注解,它的功能主要是将目前的类定义成一个websocket服务器端,
  • 注解的值将被用于监听用户连接的终端访问URL地址,客户端可以通过这个URL来连接到WebSocket服务器端
  • 该注解用来指定一个URI,客户端可以通过这个URI来连接到WebSocket。类似Servlet的注解mapping。无需在web.xml中配置。 */

@ServerEndpoint("/websocket")

public class WebSocketTest { //静态变量,用来记录当前在线连接数。应该把它设计成线程安全的。 private static int onlineCount = 0;

//concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象。若要实现服务端与单一客户端通信的话,可以使用Map来存放,其中Key可以为用户标识
private static CopyOnWriteArraySet<WebSocketTest> webSocketSet = new CopyOnWriteArraySet<WebSocketTest>();

//与某个客户端的连接会话,需要通过它来给客户端发送数据
private Session session;

//用来存放 httpSessionId/session 的map  ,key 为httpSessionId ,value 为各个终端的session 对象
private static ConcurrentHashMap<String,WebSocketTest> httpSessionWebSocketMap = new ConcurrentHashMap<String,WebSocketTest>();

/**
 * 连接建立成功调用的方法
 * @param session  可选的参数。session为与某个客户端的连接会话,需要通过它来给客户端发送数据
 */
@OnOpen
public void onOpen(Session session){
	this.session = session;
	webSocketSet.add(this);     //加入set中
	addOnlineCount();           //在线数加1
	System.out.println("有新连接加入!当前在线人数为" + getOnlineCount());
}

/**
 * 连接关闭调用的方法
 */
@OnClose
public void onClose(){
	webSocketSet.remove(this);  //从set中删除
	subOnlineCount();           //在线数减1
	System.out.println("有一连接关闭!当前在线人数为" + getOnlineCount());
}

/**
 * 收到客户端消息后调用的方法
 * @param message 客户端发送过来的消息
 * @param session 可选的参数
 */
@OnMessage
public void onMessage(String message, Session session) {
	System.out.println("来自客户端的消息:" + message);
	//群发消息
	for(WebSocketTest item: webSocketSet){
		try {
			item.sendMessage(message);
		} catch (IOException e) {
			e.printStackTrace();
			continue;
		}
	}
}

/**
 * 发生错误时调用
 * @param session
 * @param error
 */
@OnError
public void onError(Session session, Throwable error){
	System.out.println("发生错误");
	error.printStackTrace();
}

/**
 * 这个方法与上面几个方法不一样。没有用注解,是根据自己需要添加的方法。
 * @param message
 * @throws IOException
 */
public void sendMessage(String message) throws IOException{
	if(this.session.isOpen()){
        this.session.getBasicRemote().sendText(message);
        //this.session.getAsyncRemote().sendText(message);
        this.session.setMaxTextMessageBufferSize(102400);
	}
}

public static synchronized int getOnlineCount() {
	return onlineCount;
}

public static synchronized void addOnlineCount() {
	WebSocketTest.onlineCount++;
}

public static synchronized void subOnlineCount() {
	WebSocketTest.onlineCount--;
}

}


    Web页面:

    var websocket = null;
    //判断当前浏览器是否支持WebSocket
    if ('WebSocket' in window) {
        websocket = new WebSocket("ws://localhost:8080/JavaWebSocket/websocket");
    }
    else {
        alert('当前浏览器 Not support websocket')
    }

    //连接发生错误的回调方法
    websocket.onerror = function () {
        setMessageInnerHTML("WebSocket连接发生错误");
    };

    //连接成功建立的回调方法
    websocket.onopen = function () {
        setMessageInnerHTML("WebSocket连接成功");
    }

    //接收到消息的回调方法
    websocket.onmessage = function (event) {
        setMessageInnerHTML(event.data);
    }

    //连接关闭的回调方法
    websocket.onclose = function () {
        setMessageInnerHTML("WebSocket连接关闭");
    }

    //监听窗口关闭事件,当窗口关闭时,主动去关闭websocket连接,防止连接还没断开就关闭窗口,server端会抛异常。
    window.onbeforeunload = function () {
        closeWebSocket();
    }

    //将消息显示在网页上
    function setMessageInnerHTML(innerHTML) {
        document.getElementById('message').innerHTML += innerHTML + '<br/>';
    }

    //关闭WebSocket连接
    function closeWebSocket() {
        websocket.close();
    }

    //发送消息
    function send() {
        var message = document.getElementById('text').value;
        websocket.send(message);
    }
如果需要WebSocketSession和HttpSession通信,则需要继承ServerEndpointConfig.Configurator 类并重写一些方法,来完成custom endpoint configuration 的逻辑代码。

    修改WebSocketTest.java:

@ServerEndpoint(value="/websocket",configurator=GetHttpSessionConfigurator.class) public class WebSocketTest{ private Session session; private HttpSession httpSession; }

    custom endpoint configuration GetHttpSessionConfigurator的代码

/** * */ import javax.servlet.http.HttpSession; import javax.websocket.HandshakeResponse; import javax.websocket.server.HandshakeRequest; import javax.websocket.server.ServerEndpointConfig; import javax.websocket.server.ServerEndpointConfig.Configurator;

/**

  • @author David

/ public class GetHttpSessionConfigurator extends Configurator { /* * */ public GetHttpSessionConfigurator() { // TODO Auto-generated constructor stub }

@Override
public void modifyHandshake(ServerEndpointConfig config, 
                            HandshakeRequest request, 
                            HandshakeResponse response)
{
    HttpSession httpSession = (HttpSession)request.getHttpSession();
    config.getUserProperties().put(HttpSession.class.getName(),httpSession);
}

}


运行结果如下:

![输入图片说明](https://static.oschina.net/uploads/img/201704/17182503_rQKG.png "在这里输入图片标题")

转载于:https://my.oschina.net/u/3388158/blog/881224

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值