1

我在 spring web sockets 文档Spring WebSockets中看到了20.4.11 Configuration and Performance下的以下代码。我很惊讶没有方法,也没有类WebSocketTransportRegistration。我正在使用 Spring Web 套接字 4.0.2.RELEASE。

@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {

    @Override
    public void configureWebSocketTransport(WebSocketTransportRegistration registration) {
        registration.setSendTimeLimit(15 * 1000).setSendBufferSizeLimit(512 * 1024);
    }

    // ...
}

我错过了什么?

4

1 回答 1

1

WebSocketTransportRegistration 仅在 4.0.3 版本中添加,因此您需要更新项目以使用该版本(或更高版本)。

于 2014-03-28T15:41:37.600 回答