Spring 在 SockJS 上使用 STOMP 并且 Tomcat 没有升级到 Websockets

Spring with STOMP over SockJS and Tomcat not upgrading to Websockets

我正在构建无状态 Spring (4.2.4.RELEASE) 解决方案,使用 STOMP over Websockets 和 SockJS 以及使用 JWT 的 Rest Endpoint 来连接具有全双工通信的移动设备。我正在使用 Tomcat 8.0.33 作为 Web 服务器,并使用 html 和 sockjs javascript 客户端进行测试。 stomp 协议使用 http 后备可以正常工作,但我不能只使用 websocket 协议。我以多种方式尝试了 CORS,但我不确定这是 Tomcat 问题还是错误的 spring 配置。我在相同的域和端口中测试了我的 html,SockJS 仍然退回到 xhr 或 iframes。

WebScoketConfig.java

@EnableWebSocketMessageBroker
 public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer
{

@Override
public void registerStompEndpoints(StompEndpointRegistry registry)
{
    RequestUpgradeStrategy upgradeStrategy = new TomcatRequestUpgradeStrategy();
    registry.addEndpoint("/ws").setHandshakeHandler(new DefaultHandshakeHandler(upgradeStrategy))
    .setAllowedOrigins("*").withSockJS().setSessionCookieNeeded(false)
    .setStreamBytesLimit(512 * 1024)
    .setHttpMessageCacheSize(1000)
    .setDisconnectDelay(30 * 1000);
}

@Override
public void configureClientOutboundChannel(ChannelRegistration registration) {
    registration.taskExecutor().corePoolSize(50);
}


@Override
public void configureMessageBroker(MessageBrokerRegistry registry)
{
    registry.enableSimpleBroker("/queue/", "/topic/");
    // registry.enableStompBrokerRelay("/queue/", "/topic/");
    registry.setApplicationDestinationPrefixes("/myapp");
}

 public void configureWebSocketTransport(WebSocketTransportRegistration registration) {
    registration.setMessageSizeLimit(500 * 1024);
    registration.setSendBufferSizeLimit(1024 * 1024);
    registration.setSendTimeLimit(20000);
 }
}

WebSecurityConfig.java

    public class WebSecurityConfig extends WebSecurityConfigurerAdapter
    {

        @Override
        protected void configure(HttpSecurity http) throws Exception
        {
            http.csrf().disable()
            .authorizeRequests()
            .antMatchers("/**").permitAll();                
        }

        @Override
        protected void configure(AuthenticationManagerBuilder auth) throws Exception
        {

        }
    }

我解决了我的问题,实际上代码很好,但是杀毒软件 (Kaspersky) 刚打开就关闭了我的客户端浏览器上的连接。它迫使 SockJS 回退到不同的策略。我在关闭防病毒软件的情况下测试了客户端,Websocket 传输非常漂亮 运行。也在 mac 和 linux 上进行了测试。