我在 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);
}
// ...
}
我错过了什么?