Spring Boot为嵌入式Tomcat,Jetty和Undertow提供WebSockets自动配置。 如果将war文件部署到独立容器,则Spring Boot假定容器负责其WebSocket支持的配置。
Spring Framework为MVC Web应用程序提供了丰富的WebSocket支持,可以通过spring-boot-starter-websocket模块轻松访问。
WebSocket支持也可用于响应式Web应用程序,并且需要包含WebSocket API以及spring-boot-starter-webflux:
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
</dependency>