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 foo. To match any endpoint you can do:
from("jetty://0.0.0.0:8123?matchOnUriPrefix=true").to("mock:foo");
|