当前位置:   article > 正文

springboot整合WebSocket_springboot websocket setmaxsessionidletimeout

springboot websocket setmaxsessionidletimeout

1、在pom.xml中添加依赖包

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-websocket</artifactId>
		</dependency>
		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>fastjson</artifactId>
			<version>1.2.54</version>
		</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

2、创建WebSocket配置类(WebSocketConfig.java )

package com.jeff.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;

/**
 * 
 * @description: WebSocket配置
 * @author: Jeff
 * @date: 2019年12月12日
 */
@Configuration
public class WebSocketConfig {

	@Bean
	public ServerEndpointExporter serverEndpointExporter() {
		System.out.println("SpringBoot 注册  WebSocket");
		return new ServerEndpointExporter();
	}

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

3、创建ws协议的Controller(WebSocketFloorServer.java)

package com.jeff.controller;

import java.util.concurrent.CopyOnWriteArraySet;
import java.util.concurrent.TimeUnit;

import javax.websocket.OnClose;
import javax.websocket.OnMessage;
import javax.websocket.OnOpen;
import javax.websocket.Session;
import javax.websocket.server.PathParam;
import javax.websocket.server.ServerEndpoint;

import org.springframework.stereotype.Component;

@Component
@ServerEndpoint("/websocket/{floorId}/floor.do")
public class WebSocketFloorServer {

	// concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象
	private static CopyOnWriteArraySet<Session> webSocketSet = new CopyOnWriteArraySet<>();

	private static final String FLOOR_ID = "floorId";

	/**
	 * 
	 * @description: 连接建立成功调用的方法
	 * @author: Jeff
	 * @date: 2019年12月12日
	 * @param floorId 楼层id
	 * @param session 与某个客户端的连接会话,需要通过它来给客户端发送数据
	 */
	@OnOpen
	public void onOpen(@PathParam("floorId") String floorId, Session session) {
		// session 最大空闲时间为10分钟。
		session.setMaxIdleTimeout(TimeUnit.MINUTES.toMillis(10));
		session.getUserProperties().put(FLOOR_ID, floorId);
		webSocketSet.add(session); // 加入set中
		System.out.println("楼层:" + floorId + "新建连接,当前连接数为:" + getOnlineCount());
	}

	/**
	 * 
	 * @description: 连接关闭调用的方法
	 * @author: Jeff
	 * @date: 2019年12月12日
	 * @param session
	 */
	@OnClose
	public void onClose(Session session) {
		String floorId = (String) session.getUserProperties().get(FLOOR_ID);
		webSocketSet.remove(session); // 从set中删除
		System.out.println("楼层:" + floorId + "关闭连接,当前连接数为:" + getOnlineCount());
	}

	/**
	 * 
	 * @description: 收到客户端消息后调用的方法
	 * @author: Jeff
	 * @date: 2019年12月12日
	 * @param message 客户端发送过来的消息
	 * @param session
	 */
	@OnMessage
	public void onMessage(String message, Session session) {
		if (webSocketSet.contains(session)) {
			String floorId = (String) session.getUserProperties().get(FLOOR_ID);
			System.out.println("楼层:" + floorId + " 的消息:" + message);
		}
	}

	/**
	 * 
	 * @description: 通过楼层id发送消息
	 * @author: Jeff
	 * @date: 2019年12月12日
	 * @param message
	 * @param floorId
	 */
	public void sendMessage(String message, String floorId) {
		if (getOnlineCount() != 0) {
			try {
				for (Session item : webSocketSet) {
					if (floorId.equals(item.getUserProperties().get(FLOOR_ID))) {
						item.getBasicRemote().sendText(message);
						System.out.println("发送消息:" + message);
					}
				}
			} catch (Exception e) {
				System.out.println(e.getMessage());
			}
		}
	}

	public int getOnlineCount() {
		return webSocketSet.size();
	}
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98

4、创建测试controller(FloorController.java)

package com.jeff.controller;

import java.util.Date;
import java.util.HashMap;
import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.alibaba.fastjson.JSONObject;

@RestController
@RequestMapping("floor")
public class FloorController {

	@Autowired
	private WebSocketFloorServer socketFloorServer;

	@RequestMapping("hello")
	public String hello(String floorId) {
		Map<String, Object> map = new HashMap<String, Object>();
		map.put("name", "Jeff");
		map.put("age", 18);
		map.put("currentDate", new Date());
		socketFloorServer.sendMessage(JSONObject.toJSONString(map), floorId);
		return "HelloWord";
	}

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

5、打开websocket测试工具连接
在这里插入图片描述
在这里插入图片描述
6、打开浏览器测试,访问 http://localhost:8080/floor/hello?floorId=1
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/717263
推荐阅读
相关标签
  

闽ICP备14008679号