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>