web管理系統中可以對業務資料執行新增和刪除,現在需要當業務資料發生新增或刪除操作後,儘可能實時的反應到WPF使用者端上面。
web管理系統用VUE編寫,後端服務為SpringBoot,WPF使用者端基於.Netframework4.8編寫。
WebSocketServer端採用SpringBoot框架實現,通過在springboot-web專案中整合 org.springframework.boot:spring-boot-starter-websocket
實現websocket的能力。
<!-- websocket -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.config.annotation.EnableWebSocket;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
@Configuration
@EnableWebSocket
public class WebSocketConfig {
@Bean
public ServerEndpointExporter serverEndpointExporter() {
return new ServerEndpointExporter();
}
}
import com.alibaba.fastjson.JSON;
import org.springframework.stereotype.Component;
import javax.websocket.*;
import javax.websocket.server.PathParam;
import javax.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.util.concurrent.ConcurrentHashMap;
@ServerEndpoint("/ws/label/{clientId}")
@Component
public class LabelWebSocket {
/**
* session list
*/
private static ConcurrentHashMap<String, Session> sessionList = new ConcurrentHashMap<>();
/**
* 當前 clientId
*/
private String currentClientId = "";
@OnOpen
public void open(Session session, @PathParam("clientId") String clientId) throws IOException {
if (sessionList.containsKey(clientId)) {
sessionList.remove(clientId);
}
sessionList.put(clientId, session);
currentClientId = clientId;
this.sendMsg(session, "connectok");
}
@OnClose
public void close(Session session) throws IOException {
sessionList.remove(currentClientId);
System.out.println("連線關閉,session=" + JSON.toJSONString(session.getId()));
}
@OnMessage
public void receiveMsg(Session session, String msg) throws IOException {
this.sendMsg(session, "接收到的訊息為:" + msg);
// throw new RuntimeException("主動拋異常");
}
@OnError
public void error(Session session, Throwable e) throws IOException {
System.out.println("連線異常,session=" + JSON.toJSONString(session.getId()) + ";currentClientId=" + currentClientId);
this.sendMsg(session, "發生異常,e=" + e.getMessage());
e.printStackTrace();
}
/**
* @param clientId
* @param msg
*/
public boolean sendMsg(String clientId, String msg) throws IOException {
if (sessionList.containsKey(clientId)) {
Session session = sessionList.get(clientId);
this.sendMsg(session, msg);
return true;
} else {
return false;
}
}
private void sendMsg(Session session, String msg) throws IOException {
session.getBasicRemote().sendText(msg);
}
}
WebSocketClient端整合在WPF應用使用者端中,通過前期調研,選中 WebSocketSharp 作為websocketclient工具,WebSocketSharp 是託管在Github的開源專案,MITLicense,目前4.9K的star。
//nuget
Install-Package WebSocketSharp -Pre
WebSocket ws = new WebSocket("ws://127.0.0.1:8083/ws/xx/clientId");
private void InitWebSocket()
{
ws.OnOpen += (sender, e) =>
{
Console.WriteLine("onOpen");
};
//允許ping
ws.EmitOnPing = true;
//接收到xiaoxi
ws.OnMessage += (sender, e) =>
{
ReceiveMessage(sender, e);
};
ws.Connect();
//傳送訊息
//ws.Send("BALUS")
;
}
private void ReceiveMessage(object sender, MessageEventArgs e)
{
if (e.IsText)
{
// Do something with e.Data.like jsonstring
Console.WriteLine(e.Data);
return;
}
if (e.IsBinary)
{
// Do something with e.RawData. like byte[]
return;
}
if (e.IsPing)
{
// Do something to notify that a ping has been received.
return;
}
}
由於 WebSocketSharp 會建立執行緒來處理 ReceiveMessage ,而WPF中子執行緒是無法更新UI的,所以需要引入 Dispatcher 來實現跨執行緒更新UI。
//當前執行緒
string name = Thread.CurrentThread.ManagedThreadId.ToString();
private void ReceiveMessage(object sender, MessageEventArgs e)
{
if (e.IsText)
{
// Do something with e.Data.like jsonstring
Console.WriteLine(e.Data);
//當前執行緒
string name = Thread.CurrentThread.ManagedThreadId.ToString();
App.Current.Dispatcher.Invoke((Action)(() =>
{
Image lab = new Image();
lab.Uid = "123456";
lab.Name = "labName";
lab.Width = 50; lab.Height = 50;
string url = "http://xxx:xxx/img/louyu.png";
BitmapImage bitmapImage = HttpUtil.getImage(url);
lab.Source = bitmapImage;
lab.AddHandler(MouseLeftButtonDownEvent, new MouseButtonEventHandler(LabelClick));
Canvas.SetTop(lab, 800);
Canvas.SetLeft(lab, 600);
this.cav.Children.Add(lab);
}));
return;
}
}
目前WebSocketServer和web後端服務是在同一個SpringBoot的工程中,所以只要將WebSocketServer託管到SpringContainer中,web後端服務可以通過 DI 的方式直接存取 WebSocketEndPoint。
如果考慮程式的低耦合,可以在WebSocketServer和web後端服務之間架設一個MQ。
@Autowired
private LabelWebSocket ws;
@GetMapping("/create")
public boolean createLabel() throws IOException {
String cameraId = "cml";
//todo
boolean result = ws.sendMsg(cameraId, "新增標籤");
return result;
}
當前在 WebSocketServer 中,已經連線的client資訊是記錄在當前程序的cache中,如果服務做橫向擴容,cache資訊無法在多範例程序中傳遞,將導致無法正確的處理業務資料,並可能會發生意想不到的異常和bug,此問題在並行越高的情況下造成的影響越大
web後端服務為基於java語言的springboot程式,這種型別程式的特點是記憶體消耗特別嚴重。WebSocketServer服務在本專案中僅用作訊息中介軟體,連通web後端服務和WPF使用者端。
首先WebSocketServer沒有太多的計算能力的消耗,記憶體消耗會隨著連線使用者端數量的增長而增長,網路將是最大的開銷,一方面需要轉發來自web後端服務的業務資料,並和WPF使用者端保持長連線;另一方面WebSocketServer和WPF使用者端的互動可能會走公網,而其和web後端服務必然是在區域網環境。
綜上,將web後端服務和WebSocketServer分開部署對於硬體資源成本和利用率來說是最好的選擇。
未引入重試機制,當某一個環節失敗之後,將導致異常情況發生。