WebSocketConfig这个类的作用是啥啊,我在Websocket这个类中也没有见到注入ServerEndPoint
来源:12-10 webSocket消息推送
zzylove
2019-07-10
如题,请老师或者同学解释一下
写回答
3回答
-
使用websocket要加这个配置的。
022019-08-19 -
廖师兄
2019-07-14
你看Websocket组件里是有这个类的,至于具体在哪里用的,就要去看源码了。
你想深入研究的话,先去了解spring的Bean.
再去搜索“自定义springboot starter”
00 -
廖师兄
2019-07-12
这个类里是不是有@Bean么
package com.imooc.config; import org.springframework.context.annotation.Bean; import org.springframework.stereotype.Component; import org.springframework.web.socket.server.standard.ServerEndpointExporter; /** * Created by 廖师兄 * 2017-07-30 23:17 */ @Component public class WebSocketConfig { @Bean public ServerEndpointExporter serverEndpointExporter() { return new ServerEndpointExporter(); } }
就是为了实例化serverEndpointExporter啊
022019-07-14
相似问题