Re: Java object binding not working

2019-02-12 Thread Swapnil Katkar
Hi, Do you need any input from me to resolve this issue? Regards, Swapnil Katkar On Fri, Feb 8, 2019 at 10:30 AM Swapnil Katkar wrote: > Hi, > > It would be beneficial to me if you provide me at least some hint to > resolve this problem. Thanks in advance! > > Regards, > Swapnil Katkar > > > >

Re: Java object binding not working

2019-02-08 Thread Jason Gerlowski
Hi Swapnil, Ray did suggest a potential cause. Your Java object has "name" as a String, but Solr returns the "name" value as an ArrayList. Usually Solr returns ArrayLists when the field in question is multivalued, so it's a safe bet that Solr is treating your "name" field as multivalued. You can

Re: Java object binding not working

2019-02-03 Thread Ray Niu
did you use multi values field? On Sun, Feb 3, 2019 at 8:22 PM Swapnil Katkar wrote: > Greetings! > > I am working on a requirement where I want to query the data and want to > do the object mapping for the retrieved result using Solrj. For this, I am > referring to the official document at > *