How to dump HTTP body and headers sent with HTTP component with Apache Camel(如何使用 Apache Camel 转储与 HTTP 组件一起发送的 HTTP 正文和标头)
问题描述
如何使用此路由转储 Apache Camel HTTP 组件发送的 HTTP 正文和标头:
How to dump HTTP body and headers sent with Apache Camel HTTP component using this route:
from('direct:abc').
setHeader(Exchange.HTTP_URI, constant("${config.gnutch.solr.coreUrl}/select")).
setHeader(Exchange.HTTP_QUERY, constant("q=${q}&wt=xml")).
setHeader(Exchange.CONTENT_TYPE, constant('application/xml')).
setHeader(Exchange.HTTP_METHOD, constant('GET')).
setBody(constant(null)).
to("http://null")
这是 groovy 中的 Camel DSL 代码.这可能吗?
This is Camel DSL code in groovy. Is that possible?
推荐答案
你有没有尝试过类似的方法
Have you tried something like
from("direct:abc")
.to("http://domain.com/")
.to("log:DEBUG?showBody=true&showHeaders=true")
HTTP 组件文档 建议您可以提取 HttpServletRequest
来自交流之类的,
Also the HTTP Component Documentation suggests that you can extract the HttpServletRequest
from the exchange like,
HttpServletRequest request = exchange.getIn().getBody(HttpServletRequest.class);
你也可以这样做,
from("direct:abc").to("http://domain.com").process(new Processor() {
public void process(Exchange exchange) throws Exception {
HttpServletRequest request = exchange.getIn().getBody(HttpServletRequest.class);
// Log request parameters
}
});
这篇关于如何使用 Apache Camel 转储与 HTTP 组件一起发送的 HTTP 正文和标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 Apache Camel 转储与 HTTP 组件一起发送的 HTTP 正文和标头
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01