[
https://issues.jboss.org/browse/JBIDE-9829?page=com.atlassian.jira.plugin...
]
Xavier Coulon commented on JBIDE-9829:
--------------------------------------
Max, Joseph,
The current JAX-RS validation is actually incomplete. More rules need to be implemented,
including the one you're reporting in this issue.
Do you want be to disable the current JAX-RS validation until it is fully compliant with
the Spec ? It'll need some devs, so we could schedule it for the 3.3Beta1 release, but
not before.
@PathParam validation broken
----------------------------
Key: JBIDE-9829
URL:
https://issues.jboss.org/browse/JBIDE-9829
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Webservices
Environment: JBoss JAX-RS Tools 1.2.2.v20110915-1723-H22-M3
Reporter: Jozef Hartinger
Assignee: Xavier Coulon
Fix For: 3.3.0.Beta1
Having a class:
@Path("/foo/{id}")
public class Foo {
@Path("/bar")
public void bar(@PathParam("id") String id)
{
// noop
}
}
the following error is recognized by JBoss Tools:
"@PathParam annotation value 'id' does not match any parameter of the same
method or type @Path annotation(s)."
Although the "id" parameter matches the id path parameter defined within
class-level @Path annotation.
Besides, to implement this correctly, it is also important to consider that the JAX-RS
resource may actually be a sub-resource. Thus, a path parameter can be defined on the
resource that delegates to Foo and not on Foo itself.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira