[
https://issues.apache.org/jira/browse/CXF-5806?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Sergey Beryozkin updated CXF-5806:
----------------------------------
Comment: was deleted
(was: Sorry, I got confused by the mapping in your JIRA description, so if we
have a property mapping like
"title=library.books.bookTitle" then we really let people find that library,
say "/libraries?_s=title==sometitle".
It makes sense.
)
> FIQL: Problem with mapping on ManyToMany or OnToMany associations of 2nd level
> ------------------------------------------------------------------------------
>
> Key: CXF-5806
> URL: https://issues.apache.org/jira/browse/CXF-5806
> Project: CXF
> Issue Type: Bug
> Components: JAX-RS
> Affects Versions: 2.6.13, 3.0.0
> Reporter: Romain Castan
> Labels: patch
> Attachments: patch.txt
>
>
> The simplest is used an example to illustrate the problem
> {code:title=Example}
> class ClassA {
> ClassB b;
> List<ClassD> listD;
> };
> class ClassB {
> List<ClassC> listC;
> };
> class ClassC {
> String name;
> };
> class ClassD {
> String name;
> }
> {code}
> The following request works:
> {code:title=Fiql request OK (1er level)}
> properties:
> nameD=listD.name
> Request:
> ?_s=nameD==xxxx
> {code}
> The following request doesn't work:
> {code:title=Fiql request KO (2nd level)}
> properties:
> nameC=b.listC.name
> Request:
> ?_s=nameC==xxxx
> {code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)