123456789101112131415161718192021 |
- package com.ozs.websocket;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.web.socket.server.standard.ServerEndpointExporter;
- /**
- * @Author : sunhh
- * @create 2023/3/7 16:17
- */
- @Configuration
- public class WebSocketConfig {
- /**
- * 注入ServerEndpointExporter,
- * 这个bean会自动注册使用了@ServerEndpoint注解声明的Websocket endpoint
- */
- @Bean
- public ServerEndpointExporter serverEndpointExporter() {
- return new ServerEndpointExporter();
- }
- }
|