websocket
JAVA道人
我宁愿做错,也不愿什么都不做.
展开
-
springboot开启websocket
依赖: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependen...原创 2019-12-07 19:40:59 · 410 阅读 · 0 评论 -
Websocket引入springbean无效
发现websocket引入springbean是无效的.如下:@Component@ServerEndpoint(value = "/websocket/{token}")public class WebSocketAction { @Autowired private UserService userService;使用userServ...原创 2019-12-07 19:36:36 · 476 阅读 · 0 评论 -
websocket初次体验
htmlvar ws = new WebSocket("ws://localhost/websocket/websocket");console.log(ws.readyState);//当前状态 //连接ws.onopen = function(evt){ console.log("onopen ..."); }//接收消息ws.onmessage = function(ev...原创 2019-07-02 16:48:17 · 139 阅读 · 0 评论 -
websocket如何携带header或参数
1.open时发参数var ws = new WebSocket("ws://....");ws.onopen=function(){ ws.send(token)}2.url里带参数var ws = new WebSocket("ws://url/1/3/9");前台可以使用@PathParam以及{}去取url里注意base64格式的数据可能会携带"/...原创 2019-07-02 16:51:04 · 28419 阅读 · 12 评论