123456789101112131415161718192021 |
- package com.gyee.alarm.websocket;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.web.socket.server.standard.ServerEndpointExporter;
- /**
- * 功能描述:
- * 开启websocket支持
- * @Date: 2022-12-01 09:40:15
- * @since: 1.0.0
- */
- @Configuration
- public class WebSocketConfig {
- // 使用boot内置tomcat时需要注入此bean
- @Bean
- public ServerEndpointExporter serverEndpointExporter() {
- return new ServerEndpointExporter();
- }
- }
|