我正在通过RabbitMQ在Websocket上使用spring STOMP。一切正常,但simpMessagingTemplate.convertAndSend的运行速度非常慢,调用可能需要2到10秒(同步,阻塞线程)。可能是什么原因?

RabbitTemplate.convertAndSend花费
更新

我尝试使用ActiveMQ并得到相同的结果。 convertAndSend需要2到10秒

ActiveMQ具有默认配置。

Web套接字配置:

@Configuration
@EnableWebSocket
@EnableWebSocketMessageBroker
class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {

    @Override
    void configureMessageBroker(MessageBrokerRegistry config) {
        config.enableStompBrokerRelay("/topic", "/queue", "/exchange");
        config.setApplicationDestinationPrefixes("/topic", "/queue"); // prefix in client queries
        config.setUserDestinationPrefix("/user");
    }

    @Override
    void registerStompEndpoints(StompEndpointRegistry registry) {
        registry.addEndpoint("/board").withSockJS()
    }

    @Override
    void configureWebSocketTransport(WebSocketTransportRegistration registration) {
        registration.setMessageSizeLimit(8 * 1024);
    }
}

最佳答案

问题已解决。它在io.projectreactor库版本2.0.4.RELEASE中的错误。我更改为2.0.8.RELEASE及其已解决的问题。现在发送消息大约需要50毫秒。

    <dependency>
        <groupId>io.projectreactor</groupId>
        <artifactId>reactor-net</artifactId>
        <version>2.0.8.RELEASE</version>
    </dependency>

09-08 07:00