WebSocketConfig.java 406 B

12345678910111213
  1. package cn.cslg.pas.common.config;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.web.socket.server.standard.ServerEndpointExporter;
  5. @Configuration
  6. public class WebSocketConfig {
  7. // @Bean
  8. // public ServerEndpointExporter serverEndpointExporter() {
  9. // return new ServerEndpointExporter();
  10. // }
  11. }