完成SSH远程交互命令行界面

This commit is contained in:
柏码の讲师 2023-12-05 16:07:59 +08:00
parent 97e4294ca3
commit 622f75df75

View File

@ -0,0 +1,13 @@
package com.example.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
@Configuration
public class WebSocketConfiguration {
@Bean
public ServerEndpointExporter serverEndpointExporter() {
return new ServerEndpointExporter();
}
}