[ 
https://issues.apache.org/jira/browse/CXF-5776?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14018632#comment-14018632
 ] 

Sergey Beryozkin edited comment on CXF-5776 at 6/5/14 9:46 AM:
---------------------------------------------------------------

I can't spend time guessing what does not work, I don't even know how Identity 
class looks like, and I don't see how this code was working in CXF 2.7.9 as it 
has no setters given that CXF does not support injecting directly into 
BeanParam bean fields. Furthermore @PathParam is expected to be on a setter, 
not on a getter. I'm getting really confused now.
Please provide the complete code (relevant to the issue) and possibly a test 
case

Cheers, Sergey




was (Author: sergey_beryozkin):
I can't spend time guessing what does not work, I don't even know how Identity 
class looks like, and I don't see how this code was working in CXF 2.7.9 as it 
has no setters given that CXF does not support injecting directly into 
BeanParam beans. Furthermore @PathParam is expected to be on a setter, not on a 
getter. I'm getting really confused now.
Please provide the complete code (relevant to the issue) and possibly a test 
case

Cheers, Sergey



> @PathParam not works inside @BeanParam
> --------------------------------------
>
>                 Key: CXF-5776
>                 URL: https://issues.apache.org/jira/browse/CXF-5776
>             Project: CXF
>          Issue Type: Bug
>          Components: JAX-RS
>    Affects Versions: 2.7.11
>            Reporter: MIchail Nikolaev
>            Assignee: Sergey Beryozkin
>            Priority: Minor
>
> Check line:
> https://fisheye6.atlassian.com/browse/~br=2.7.x-fixes/cxf/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/client/ClientProxyImpl.java?r=3248da800fdf25f5bd962b962b7ff2d9d98cd225#to485
> Error in the snippet
> {code}
>  m.getParameterAnnotations()[0]
> {code}
> - for some reason you get first annotation from *parameter* of the method 
> (setter?).
> So, to make it worked I need to use such workaround:
> {code}
>     @PathParam("identity")
>     public void setIdentity(@Nonnull @PathParam("identity") Identity 
> identity) {
>         this.identity = identity;
>     }
> {code}
> Probably you need to call _getter.getAnnotation(anClass)_ to allow such 
> properties to work (it worked in 2.7.9 as far as I remember):
> {code}
>     public void setIdentity(@Nonnull Identity identity) {
>         this.identity = identity;
>     }
>     @PathParam("identity")
>     @Nonnull
>     public Identity getIdentity() {
>         return identity;
>     }
> {code}
> Also, it is better to catch Exception instead of Throwable.



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to