28 lines
989 B
Plaintext
28 lines
989 B
Plaintext
package kr.co.i4way.webocket.config;
|
|
|
|
/*
|
|
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 WebSocketConfig implements WebSocketMessageBrokerConfigurer {
|
|
@Override
|
|
public void configureMessageBroker(MessageBrokerRegistry registry) {
|
|
registry.enableSimpleBroker("/topic", "/queue");
|
|
registry.setApplicationDestinationPrefixes("/app");
|
|
}
|
|
|
|
@Override
|
|
public void registerStompEndpoints(StompEndpointRegistry registry) {
|
|
//registry.addEndpoint("/websocket").withSockJS();
|
|
registry.addEndpoint("/websocket").setAllowedOrigins("*").withSockJS();
|
|
}
|
|
}
|
|
*/
|
|
|
|
public class WebSocketConfig{
|
|
} |