第 151 章 HTTP4 组件
从 Camel 版本 2.3 开始提供
http4: 组件提供基于 HTTP 的端点来调用外部 HTTP 资源(作为客户端使用 HTTP 调用外部服务器)。
Maven 用户需要将以下依赖项添加到这个组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-http4</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
camel-http4 与 camel-http
camel-http4 使用 Apache HttpClient 4.x,而 camel-http 使用 Apache HttpClient 3.x。
151.1. URI 格式
对于 HTTP
http4:hostname[:port][/resourceUri][?options]
对于 HTTPS
https4:hostname[:port][/resourceUri][?options]
默认情况下,HTTP 和 443 将端口 80 用于 HTTPS。
您可以在 URI 中附加查询选项,格式为 ?option=value&option=value&…
camel-http4 与 camel-jetty
您只能生成 HTTP4 组件生成的端点。因此,它不应该被用作 Camel 路由中的输入。要通过 HTTP 服务器绑定/公开 HTTP 端点作为 Camel 路由的输入,请使用 Jetty 组件。