You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
853 B
16 lines
853 B
[[messaging.websockets]] |
|
== WebSockets |
|
Spring Boot provides WebSockets auto-configuration for embedded Tomcat, Jetty, and Undertow. |
|
If you deploy a war file to a standalone container, Spring Boot assumes that the container is responsible for the configuration of its WebSocket support. |
|
|
|
Spring Framework provides {spring-framework-docs}/web/websocket.html[rich WebSocket support] for MVC web applications that can be easily accessed through the `spring-boot-starter-websocket` module. |
|
|
|
WebSocket support is also available for {spring-framework-docs}/web/webflux-websocket.html[reactive web applications] and requires to include the WebSocket API alongside `spring-boot-starter-webflux`: |
|
|
|
[source,xml,indent=0,subs="verbatim"] |
|
---- |
|
<dependency> |
|
<groupId>jakarta.websocket</groupId> |
|
<artifactId>jakarta.websocket-api</artifactId> |
|
</dependency> |
|
----
|
|
|