Hello community I use camel jetty endpoint to expose an http server endpoint in camel. Something like this
from("jetty:http://0.0.0.0:8081/{name}/test?httpMethodRestrict=GET") .to("log:AUDIT?showAll=true") .end(); I can see that query param and headers get mapped into exchange headers as variables. Is there any way can get the path variables as well mapped as header key-value pairs? - Reji Mathews