项目启动时加载Socket

springmvc 在web。xml加一个监听

<listener>
<listener-class>包地址.utils.websocket.MySocket</listener-class>
</listener>

 

springboot 启动类 main 方法中添加 socket 服务端启动代码

第一种:public static void main(String[] args) {

SpringApplication.run(SpringbootSocketApplication.class, args)  //起socket服务 

SocketServer server = new SocketServer(); 

server.startSocketServer(8088);

第二种:配置文件

 

posted @ 2020-06-11 17:22  李建彬  阅读(783)  评论(0编辑  收藏  举报