简单的代理对于入门是很好的,但它只支持 STOMP 命令的一个子集(它不支持 acks、receipts 和其他一些功能),依赖于一个简单的消息发送循环,并且不适合集群。作为一种选择,你可以升级你的应用程序以使用全功能的消息代理。
请参阅您所选择的消息代理(如 RabbitMQ、ActiveMQ 和其他)的 STOMP 文档,安装该代理,并在启用 STOMP 支持的情况下运行它。然后你可以在 Spring 配置中启用 STOMP 代理中继(而不是简单的代理)。
下面的配置示例启用了一个全功能的代理:
@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {
@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
registry.addEndpoint("/portfolio").withSockJS();
}
@Override
public void configureMessageBroker(MessageBrokerRegistry registry) {
registry.enableStompBrokerRelay("/topic", "/queue");
registry.setApplicationDestinationPrefixes("/app");
}
}
下面是 xml 的方式
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:websocket="http://www.springframework.org/schema/websocket"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/websocket
https://www.springframework.org/schema/websocket/spring-websocket.xsd">
<websocket:message-broker application-destination-prefix="/app">
<websocket:stomp-endpoint path="/portfolio" />
<websocket:sockjs/>
</websocket:stomp-endpoint>
<websocket:stomp-broker-relay prefix="/topic,/queue" />
</websocket:message-broker>
</beans>
前面配置中的 STOMP 代理中继器是一个 Spring MessageHandler,它通过将消息转发给外部消息代理来处理消息。为此,它建立了与 broker 的TCP 连接,将所有消息转发给 broker ,然后通过客户的 WebSocket 会话将从 brpler 收到的所有消息转发给客户。从本质上讲,它充当了一个 中转站,在两个方向上转发消息。
:::info 将 io.projectreactor.netty:reactor-netty 和 io.netty:netty-all 依赖项添加到你的项目中,用于 TCP 连接管理。 :::
此外,应用组件(如 HTTP 请求处理方法、业务服务等)也可以向代理中继器发送消息,如 发送消息 中所述,向订阅的 WebSocket 客户端广播消息。
实际上,代理中继器实现了强大的、可扩展的消息广播。