WebSocketConfig.java 394 B

1234567891011121314
  1. package com.keao.edu.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. }