WebSockets

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

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

WebSocket 支援也適用於響應式 Web 應用程式,並且需要與 spring-boot-starter-webflux 一起包含 WebSocket API。

<dependency>
	<groupId>jakarta.websocket</groupId>
	<artifactId>jakarta.websocket-api</artifactId>
</dependency>
© . This site is unofficial and not affiliated with VMware.