I have a service (maven, spring, tomcat) running at http://localhost/myServlet
So, I figure, to listen to myServlet, I need to define a route such as:
from("jetty:http://localhost/myServlet")
So, my route and context is in the same context/process space as myServlet and
the whole thing is deployed inside Tomcat
When does jetty come into play? Is that just a "name/id" or do I need to run
an actual Jetty server somehow? Also, how does the jetty component acutally
listen to calls to myServlet? How does it intercept the call? Does it use
filters?
If there is an example somewhere, please point me to it:)
Thanks...