I am currently using a HTTP method for invoking some URL which will create a JIRA issue.
Now I want to use Apache Camel, how can I use that?
I need to invoke the following link through Camel:
http://localhost:8080/rest/api/2/project/" + key + /components
As I’m new to Camel, please suggest some solutions and examples too.
Thanks
You could easily use the CXFRS Component; if you need to do it using the HTTP Component for some reason you could easily use that as well:
And of course you will need to enrich your message with the
myKeyheader before getting to this part of the route.