spring boot + websocket进行通信

这次给大家说一下自己对websocket + spring boot结合使用的一些经验

首先websocket是一个持久化的协议,实现了浏览器与服务器的全双工通信。不再像http那样,只有在浏览器发出request之后才有response,websocket能实现服务器主动向浏览器发出消息。

下面我们用spring boot来实现一下:

在spring boot的文档中,介绍了我们需要配置的文件

// pom.xml  
<dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-starter-websocket</artifactId>  
</dependency>  

相关推荐