package com.ruoyi.web.controller.socket;
|
|
import com.ruoyi.system.service.ISysTgdataService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
|
|
|
@Configuration
|
public class WebSocketConfig {
|
|
@Bean
|
public ServerEndpointExporter serverEndpointExporter() {
|
return new ServerEndpointExporter();
|
}
|
|
@Autowired
|
public void setTgService(ISysTgdataService service){
|
WebSocketServer.tgdataService = service;
|
}
|
|
}
|
|
|