You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Chandra Bose Renganathan (JIRA)" <ji...@apache.org> on 2017/01/10 14:03:58 UTC

[jira] [Updated] (CAMEL-10691) HttpServletResolveConsumerStrategy should pick the path with longest prefix match

     [ https://issues.apache.org/jira/browse/CAMEL-10691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chandra Bose Renganathan updated CAMEL-10691:
---------------------------------------------
    Summary: HttpServletResolveConsumerStrategy should pick the path with longest prefix match  (was: HttpServletResolveConsumerStrategy should longest prefix)

> HttpServletResolveConsumerStrategy should pick the path with longest prefix match
> ---------------------------------------------------------------------------------
>
>                 Key: CAMEL-10691
>                 URL: https://issues.apache.org/jira/browse/CAMEL-10691
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-http-common
>    Affects Versions: 2.17.3
>            Reporter: Chandra Bose Renganathan
>
> HttpServletResolveConsumerStrategy should pick the path with longest prefix match.
> The JAX-RS specification has defined strict sorting and precedence rules for matching URI expressions and is based on a most specific match wins algorithm.
> For camel also it should be same.
> This is an example use case:
> {code}
> @Override
> public final void configure() throws Exception {
> LOG.info("Configuring Camel routes");
> from("jetty:http://localhost:8080/crud?matchOnUriPrefix=true")
> .to("cxfbean:crudService");
> from("jetty:http://localhost:8080/?matchOnUriPrefix=true")
> .process(new StaticProcessor("/", "index.html", staticFileRoot));
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)