|
|
@@ -1,27 +0,0 @@
|
|
|
-package nju.seec.SEECdemo.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;
|
|
|
-
|
|
|
-/**
|
|
|
- * author: rale
|
|
|
- * createdAt: 1/12/19
|
|
|
- */
|
|
|
-@Configuration
|
|
|
-@EnableWebSocketMessageBroker
|
|
|
-public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {
|
|
|
-
|
|
|
- @Override
|
|
|
- public void configureMessageBroker(MessageBrokerRegistry config) {
|
|
|
- config.enableSimpleBroker("/topic");
|
|
|
- config.setApplicationDestinationPrefixes("/app");
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void registerStompEndpoints(StompEndpointRegistry registry) {
|
|
|
- registry.addEndpoint("/ws").withSockJS();
|
|
|
- }
|
|
|
-}
|