-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
149 additions
and
19 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
sky-server/src/main/java/com/sky/config/WebSocketConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.sky.config; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.web.socket.server.standard.ServerEndpointExporter; | ||
|
||
/** | ||
* WebSocket配置类,用于注册WebSocket的Bean | ||
*/ | ||
@Configuration | ||
public class WebSocketConfiguration { | ||
|
||
@Bean | ||
public ServerEndpointExporter serverEndpointExporter() { | ||
return new ServerEndpointExporter(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.sky.task; | ||
|
||
import com.sky.websocket.WebSocketServer; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Component; | ||
|
||
import java.time.LocalDateTime; | ||
import java.time.format.DateTimeFormatter; | ||
|
||
@Component | ||
public class WebSocketTask { | ||
@Autowired | ||
private WebSocketServer webSocketServer; | ||
|
||
/** | ||
* 通过WebSocket每隔5秒向客户端发送消息 | ||
*/ | ||
// @Scheduled(cron = "0/5 * * * * ?") | ||
public void sendMessageToClient() { | ||
webSocketServer.sendToAllClient("这是来自服务端的消息:" + DateTimeFormatter.ofPattern("HH:mm:ss").format(LocalDateTime.now())); | ||
} | ||
} |
71 changes: 71 additions & 0 deletions
71
sky-server/src/main/java/com/sky/websocket/WebSocketServer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
package com.sky.websocket; | ||
|
||
import org.springframework.stereotype.Component; | ||
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 java.util.Collection; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
/** | ||
* WebSocket服务 | ||
*/ | ||
@Component | ||
@ServerEndpoint("/ws/{sid}") | ||
public class WebSocketServer { | ||
|
||
//存放会话对象 | ||
private static Map<String, Session> sessionMap = new HashMap(); | ||
|
||
/** | ||
* 连接建立成功调用的方法 | ||
*/ | ||
@OnOpen | ||
public void onOpen(Session session, @PathParam("sid") String sid) { | ||
System.out.println("客户端:" + sid + "建立连接"); | ||
sessionMap.put(sid, session); | ||
} | ||
|
||
/** | ||
* 收到客户端消息后调用的方法 | ||
* | ||
* @param message 客户端发送过来的消息 | ||
*/ | ||
@OnMessage | ||
public void onMessage(String message, @PathParam("sid") String sid) { | ||
System.out.println("收到来自客户端:" + sid + "的信息:" + message); | ||
} | ||
|
||
/** | ||
* 连接关闭调用的方法 | ||
* | ||
* @param sid | ||
*/ | ||
@OnClose | ||
public void onClose(@PathParam("sid") String sid) { | ||
System.out.println("连接断开:" + sid); | ||
sessionMap.remove(sid); | ||
} | ||
|
||
/** | ||
* 群发 | ||
* | ||
* @param message | ||
*/ | ||
public void sendToAllClient(String message) { | ||
Collection<Session> sessions = sessionMap.values(); | ||
for (Session session : sessions) { | ||
try { | ||
//服务器向客户端发送消息 | ||
session.getBasicRemote().sendText(message); | ||
} catch (Exception e) { | ||
e.printStackTrace(); | ||
} | ||
} | ||
} | ||
|
||
} |