标签: java spring stomp spring-websocket spring-messaging
要在我的代码中连接到url(作为客户端),我有以下代码
@Autowired private WebSocketStompClient client; .... client.connect(wsUrl, handler);
通常如果我们有连接方法,我们有断开方法,启动/停止等等。
但WebSocketStompClient没有断开连接方法。
WebSocketStompClient
使用后我不应该断开它吗?