Springboot增加Layui即时通讯支持
1、在pom.xml中增加jar包支持 <!-- 添加 websocket --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-websocket</artifactId> </dependency> 2、增加websocket配置类 import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.socket.server.standard.ServerEndpointExporter; /** * describe: websocketConfig * current user Maochao.zhu * current system 2020/5/12 */ @Configuration public class