1234567891011121314151617181920212223242526272829 |
- package com.fdkk.fdkkmeta.socketIO;
- import com.corundumstudio.socketio.SocketIOServer;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.CommandLineRunner;
- import org.springframework.core.annotation.Order;
- import org.springframework.stereotype.Component;
- /**
- * @author Xiewj
- * @date 2022/3/15
- */
- @Component
- @Order(value = 1)
- public class ServerRunner implements CommandLineRunner {
- private final SocketIOServer server;
- @Autowired
- public ServerRunner(SocketIOServer server) {
- this.server = server;
- }
- @Override
- public void run(String... args) throws Exception {
- server.start();
- System.out.println("socket.io启动成功!");
- }
- }
|