WebSocketConfig这个类的作用是啥啊,我在Websocket这个类中也没有见到注入ServerEndPoint

来源:12-10 webSocket消息推送

zzylove

2019-07-10

如题,请老师或者同学解释一下

写回答

3回答

廖师兄

2019-07-10

使用websocket要加这个配置的。

0
2
zzylove
非常感谢!
2019-08-19
共2条回复

廖师兄

2019-07-14

你看Websocket组件里是有这个类的,至于具体在哪里用的,就要去看源码了。

你想深入研究的话,先去了解spring的Bean.

再去搜索“自定义springboot starter”

//img.mukewang.com/szimg/5d2b4e1209d1c67428801800.jpg

0
0

廖师兄

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啊

0
2
廖师兄
回复
zzylove
看上面的图。
2019-07-14
共2条回复

Spring Boot双版本(1.5/2.1) 打造企业级微信点餐系统

从0到1开发中小型企业级Java应用,并学会迭代重构技巧

6410 学习 · 5247 问题

查看课程