151.18. 高级用法
如果您需要对 HTTP 生成者进行更多控制,则应使用 HttpComponent
,您可以在其中设置各种类来为您提供自定义行为。
151.18.1. 为 HTTP 客户端设置 SSL
使用 JSSE 配置实用程序
自 Camel 2.8 起,HTTP4 组件通过 Camel JSSE 配置实用程序支持 SSL/TLS 配置。这个实用程序可大大减少您需要写入的组件特定代码量,并在端点和组件级别进行配置。以下示例演示了如何将 实用程序与 HTTP4 组件一起使用。
组件的编程配置
KeyStoreParameters ksp = new KeyStoreParameters(); ksp.setResource("/users/home/server/keystore.jks"); ksp.setPassword("keystorePassword"); KeyManagersParameters kmp = new KeyManagersParameters(); kmp.setKeyStore(ksp); kmp.setKeyPassword("keyPassword"); SSLContextParameters scp = new SSLContextParameters(); scp.setKeyManagers(kmp); HttpComponent httpComponent = getContext().getComponent("https4", HttpComponent.class); httpComponent.setSslContextParameters(scp);
基于 Spring DSL 的端点配置
... <camel:sslContextParameters id="sslContextParameters"> <camel:keyManagers keyPassword="keyPassword"> <camel:keyStore resource="/users/home/server/keystore.jks" password="keystorePassword"/> </camel:keyManagers> </camel:sslContextParameters>... ... <to uri="https4://127.0.0.1/mail/?sslContextParameters=#sslContextParameters"/>...
直接配置 Apache HTTP 客户端
基本上 camel-http4 组件基于 Apache HttpClient 构建。有关详细信息,请参阅 SSL/TLS 自定义,或查看 org.apache.camel.component.http4.HttpsServerTestSupport
单元测试基础类。
您还可以实施自定义 org.apache.camel.component.http4.HttpClientConfigurer
,以便在 http 客户端上执行一些配置(如果需要完全控制)。
但是,如果您只想 指定密钥存储和信任存储,您可以使用 Apache HTTP HttpClientConfigurer
来执行此操作,例如:
KeyStore keystore = ...; KeyStore truststore = ...; SchemeRegistry registry = new SchemeRegistry(); registry.register(new Scheme("https", 443, new SSLSocketFactory(keystore, "mypassword", truststore)));
然后,您需要创建一个实施 HttpClientConfigurer
的类,并注册上述示例提供密钥存储或信任存储的 https 协议。然后,在 camel route builder 类中,您可以按类似以下内容进行 hook:
HttpComponent httpComponent = getContext().getComponent("http4", HttpComponent.class); httpComponent.setHttpClientConfigurer(new MyHttpClientConfigurer());
如果使用 Spring DSL 执行此操作,您可以使用 URI 指定 HttpClientConfigurer
。例如:
<bean id="myHttpClientConfigurer" class="my.https.HttpClientConfigurer"> </bean> <to uri="https4://myhostname.com:443/myURL?httpClientConfigurer=myHttpClientConfigurer"/>
只要您实施 HttpClientConfigurer 并配置密钥存储和信任存储,它就可以正常工作。
使用 HTTPS 验证 gotchas
最终用户表示他在使用 HTTPS 进行身份验证时遇到问题。这个问题最终通过提供自定义配置的 org.apache.http.protocol.HttpContext
来解决此问题:
- 1.为 HttpContexts 创建(Spring)工厂:
public class HttpContextFactory { private String httpHost = "localhost"; private String httpPort = 9001; private BasicHttpContext httpContext = new BasicHttpContext(); private BasicAuthCache authCache = new BasicAuthCache(); private BasicScheme basicAuth = new BasicScheme(); public HttpContext getObject() { authCache.put(new HttpHost(httpHost, httpPort), basicAuth); httpContext.setAttribute(ClientContext.AUTH_CACHE, authCache); return httpContext; } // getter and setter }
- 2.在 Spring 应用上下文文件中声明一个 HttpContext:
<bean id="myHttpContext" factory-bean="httpContextFactory" factory-method="getObject"/>
- 3.在 http4 URL 中引用上下文:
<to uri="https4://myhostname.com:443/myURL?httpContext=myHttpContext"/>
使用不同的 SSLContextParameters
HTTP4 组件只支持每个组件的 org.apache.camel.util.jsse.SSLContextParameters
的一个实例。如果您需要使用 2 个或更多不同的实例,则需要设置多个 HTTP4 组件,如下所示。在我们有 2 个组件时,每个组件都使用它们自己的 sslContextParameters
属性实例。
<bean id="http4-foo" class="org.apache.camel.component.http4.HttpComponent"> <property name="sslContextParameters" ref="sslContextParams1"/> <property name="x509HostnameVerifier" ref="hostnameVerifier"/> </bean> <bean id="http4-bar" class="org.apache.camel.component.http4.HttpComponent"> <property name="sslContextParameters" ref="sslContextParams2"/> <property name="x509HostnameVerifier" ref="hostnameVerifier"/> </bean>