We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c27439 commit 1746741Copy full SHA for 1746741
README.md
@@ -41,11 +41,6 @@ class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {
41
void registerStompEndpoints(StompEndpointRegistry registry) {
42
registry.addEndpoint("/example-endpoint").withSockJS()
43
}
44
-
45
- @Override
46
- void configureWebSocketTransport(WebSocketTransportRegistration registration) {
47
- registration.setMessageSizeLimit(8 * 1024);
48
- }
49
50
```
51
@@ -55,9 +50,6 @@ class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {
55
@RestController
56
class SocketController {
57
52
58
- @Autowired
59
- SocketService socketService
60
61
53
@MessageMapping('/hello-msg-mapping')
62
54
@SendTo('/topic/greetings')
63
EchoModel echoMessageMapping(String message) {
0 commit comments