andreybavt's picture
changes
8c86632
raw
history blame
940 Bytes
package ai.giskard.learnspringwebsockets;
import org.springframework.context.annotation.Configuration;
import org.springframework.messaging.simp.config.MessageBrokerRegistry;
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
public class WebSocketBrokerConfig implements WebSocketMessageBrokerConfigurer {
@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
registry.addEndpoint("/ws").setAllowedOrigins("*");
}
// @Override
// public void configureMessageBroker(MessageBrokerRegistry config) {
// config.setApplicationDestinationPrefixes("/app");
// config.enableSimpleBroker("/topic", "/queue");
// }
}