Romain Castan created CXF-5806:
----------------------------------
Summary: 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: 3.0.0, 2.6.13
Reporter: Romain Castan
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}
properties:
nameD=listD.name
Request:
?_s=nameD==xxxx
{code}
The following request doesn't work:
{code:title=Fiql request KO}
properties:
nameC=b.listC.name
Request:
?_s=nameC==xxxx
{code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)