Spring Integration如何实现网络套接字功能支持?
- 内容介绍
- 文章标签
- 相关推荐
本文共计3556个文字,预计阅读时间需要15分钟。
从4.1版本起,Spring Integration支持WebSocket。它基于Spring框架的模块,包括架构、基础设置和API。因此,Spring WebSocket的许多组件和配置选项可以在Spring Integration中重用。
从4.1版本开始,Spring Integration支持WebSocket。 它基于 Spring 框架模块中的架构、基础设施和 API。 因此,Spring WebSocket的许多组件(如或)和配置选项(如)可以在Spring Integration中重用。 有关更多信息,请参阅 Spring 框架参考手册中的Spring 框架 WebSocket 支持章节。web-socketSubProtocolHandlerWebSocketClient@EnableWebSocketMessageBroker
您需要将此依赖项包含在项目中:
<dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-websocket</artifactId> <version>6.0.0</version></dependency>对于服务器端,必须显式包含依赖项。
本文共计3556个文字,预计阅读时间需要15分钟。
从4.1版本起,Spring Integration支持WebSocket。它基于Spring框架的模块,包括架构、基础设置和API。因此,Spring WebSocket的许多组件和配置选项可以在Spring Integration中重用。
从4.1版本开始,Spring Integration支持WebSocket。 它基于 Spring 框架模块中的架构、基础设施和 API。 因此,Spring WebSocket的许多组件(如或)和配置选项(如)可以在Spring Integration中重用。 有关更多信息,请参阅 Spring 框架参考手册中的Spring 框架 WebSocket 支持章节。web-socketSubProtocolHandlerWebSocketClient@EnableWebSocketMessageBroker
您需要将此依赖项包含在项目中:
<dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-websocket</artifactId> <version>6.0.0</version></dependency>对于服务器端,必须显式包含依赖项。

