如何为使用 Camel 中的 http4 组件发出的请求设置标头?我要连接的站点需要设置引荐来源网址。直接使用 HttpClient ,可以向请求中添加标头,但我看不出它在 Camel 中是如何公开的。
ETA:基于公认答案的工作示例:
from("timer://foo?fixedRate=true&delay=0&period=300000")
.setHeader("Referer", constant("https://example.com"))
.to("https4://www.example.com")