I'm using camel rest java dsl with jetty component. Camel version is 2.18.0
The route provides a rest service that consumes json formatted request and produces json response. Doing so using POST is no problem.
But since these routes don't change no data, it would be preferrable to use GET as verb.
Is there any way to accept a json body in the upstream together with GET?
Does it depend on the underlying consumer?
Are there any examples to do so or am I fundamentally wrong in trying so?
Thanx in advance Henning