WebSockets

Spring Boot 為嵌入式 Tomcat、Jetty 和 Undertow 提供了 WebSockets 自動配置。如果您將 war 檔案部署到獨立容器,Spring Boot 會假定該容器負責其 WebSocket 支援的配置。

Spring Framework 為 MVC Web 應用提供了豐富的 WebSocket 支援,可以透過 spring-boot-starter-websocket 模組輕鬆訪問。

WebSocket 支援也適用於響應式 Web 應用,需要 alongside spring-boot-starter-webflux 幷包含 WebSocket API。

<dependency>
	<groupId>jakarta.websocket</groupId>
	<artifactId>jakarta.websocket-api</artifactId>
</dependency>