In HTTP requests (and other requests or messages) you usually get a payload and a bunch of headers. In Camel you can find the payload in the “body” variable like this:
1 | public class MyRoute extends RouteBuilder { |
4 | public void configure() throws Exception { |
5 | from( "timer:mytimer?repeatCount=1" ) |
So, how do you access the headers? There is another variable for this called “in” and it can be used like this:
01 | public class MyRoute extends RouteBuilder { |
04 | public void configure() throws Exception { |
05 | from( "timer:mytimer?repeatCount=1" ) |
08 | .log( "${in.headers.Content-Type}" ); |
Tested on Ubuntu 20.04.4 LTS, Apache Camel 3.20, Minikube v1.29.0 (Camel-K) and Java 1.8.0_352
Comments are closed.