第 358 章 Undertow 组件
从 Camel 版本 2.16 开始提供
undertow 组件提供基于 HTTP 和 WebSocket 的端点,用于消耗和生成 HTTP/WebSocket 请求。
也就是说,Undertow 组件的行为是简单的 Web 服务器。Undertow 也可以用作 http 客户端,这意味着您也可以将其用作制作者。
提示
自 Camel 版本 2.21 起,undertow 组件还支持 WebSocket 连接,从而充当 Camel websocket 组件的简易替代品或tmo consist-websocket 组件。
Maven 用户需要将以下依赖项添加到这个组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-undertow</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
358.1. URI 格式
undertow:http://hostname[:port][/resourceUri][?options] undertow:https://hostname[:port][/resourceUri][?options] undertow:ws://hostname[:port][/resourceUri][?options] undertow:wss://hostname[:port][/resourceUri][?options]
您可以在 URI 中附加查询选项,格式为 ?option=value&option=value&…