* BAEL-4648: How to debug Websockets * Formatted the code * Incorporated comments from Kevin
26 lines
1020 B
Java
26 lines
1020 B
Java
package com.baeldung.debugwebsockets;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.messaging.simp.config.MessageBrokerRegistry;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
import org.springframework.web.socket.config.annotation.EnableWebSocketMessageBroker;
|
|
import org.springframework.web.socket.config.annotation.StompEndpointRegistry;
|
|
import org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer;
|
|
|
|
@Configuration
|
|
@EnableWebSocketMessageBroker
|
|
@EnableScheduling
|
|
public class WebsocketConfiguration implements WebSocketMessageBrokerConfigurer {
|
|
@Override
|
|
public void configureMessageBroker(MessageBrokerRegistry config) {
|
|
config.enableSimpleBroker("/topic");
|
|
config.setApplicationDestinationPrefixes("/app");
|
|
}
|
|
|
|
@Override
|
|
public void registerStompEndpoints(StompEndpointRegistry registry) {
|
|
registry.addEndpoint("/stock-ticks").setAllowedOriginPatterns("*").withSockJS();
|
|
}
|
|
|
|
}
|