Valentin Mayamsin created CXF-5432:
--------------------------------------
Summary: JAX-RS resources finding is unpredictable in case @Path
is non-unique
Key: CXF-5432
URL: https://issues.apache.org/jira/browse/CXF-5432
Project: CXF
Issue Type: Bug
Components: JAX-RS
Affects Versions: 2.7.6
Reporter: Valentin Mayamsin
Priority: Minor
Let's say I have two resources:
{code}
@Path("resource")
class ResourceOne {
@Path("one")
String getSomething();
}
@Path("resource")
class ResourceTwo {
@Path("two")
String doSomething();
}
{code}
So there are two URIs to access them:
resource/one
resource/two
With the current implementation one of them would fail.
The reason is org.apache.cxf.jaxrs.model.ClassResourceInfoComparator assumes
@Path values are unique which is not necessarily true.
Workaround is to make @Path value unique for root resources.
--
This message was sent by Atlassian JIRA
(v6.1#6144)