我在RabbitMQ上使用Spring STOMP over Websocket。一切正常,但simpMessagingTemplate.convertAndSend工作很慢,调用可能需要2-10秒(同步,阻塞线程)。可能是什么原因?
RabbitTemplate.convertAndSend take< 1s,但我需要踩踏websocket ..
更新
我尝试使用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);
}
}
答案 0 :(得分:8)
问题已解决。它在io.projectreactor库版本2.0.4.RELEASE中的错误。我改为2.0.8.RELEASE及其固定的问题。现在发送消息大约需要50ms。
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-net</artifactId>
<version>2.0.8.RELEASE</version>
</dependency>