第 151 章 HTTP4 Component
从 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 vs 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]
默认情况下,将端口 80 用于 HTTP,对于 HTTPS 使用 443。
您可以使用以下格式在 URI 中附加查询选项 ?option=value& amp;option=value&…
camel-http4 vs camel-jetty
您只能生成 HTTP4 组件生成的端点。因此,它永远不会用作 Camel 路由中的输入。要通过 HTTP 服务器将 HTTP 端点作为输入绑定到 Camel 路由,请使用 Jetty 组件。