Parcourir la source

删除websocket引用

syh il y a 4 ans
Parent
commit
03dbddea62

+ 0 - 18
jeecg-boot-module-system/src/main/java/org/jeecg/config/WebSocketConfig.java

@@ -1,18 +0,0 @@
-package org.jeecg.config;
-
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.web.socket.server.standard.ServerEndpointExporter;
-
-@Configuration
-public class WebSocketConfig {
-    /**
-     * 	注入ServerEndpointExporter,
-     * 	这个bean会自动注册使用了@ServerEndpoint注解声明的Websocket endpoint
-     */
-    @Bean
-    public ServerEndpointExporter serverEndpointExporter() {
-        return new ServerEndpointExporter();
-    }
-    
-}