Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the asciidoc in the repository: https://github.com/apache/camel/blob/master/README.md https://github.com/apache/camel/blob/master/components/readme.adoc
How do I let Jetty match wildcardsBy default Jetty will only match on exact uri's. But you can instruct Jetty to match prefixes. For example
from("jetty://0.0.0.0:8123/foo").to("mock:foo");
In the route above Jetty will only match if the uri is an exact match, so it will match if you enter So if you want to enable wildcard matching you do as follows:
from("jetty://0.0.0.0:8123/foo?matchOnUriPrefix=true").to("mock:foo");
So now Jetty matches any endpoints with starts with To match any endpoint you can do:
from("jetty://0.0.0.0:8123?matchOnUriPrefix=true").to("mock:foo");
|
