提交 | 用户 | 时间 | ||
059083 | 1 | package com.jcdm.main.websocket; |
W | 2 | |
3 | ||
4 | import org.springframework.context.annotation.Bean; | |
5 | import org.springframework.context.annotation.Configuration; | |
6 | import org.springframework.web.socket.server.standard.ServerEndpointExporter; | |
7 | ||
8 | @Configuration | |
9 | public class WebSocketConfig { | |
10 | ||
11 | ||
12 | @Bean | |
13 | public ServerEndpointExporter serverEndpointExporter() { | |
14 | return new ServerEndpointExporter(); | |
15 | } | |
16 | } |