0

I am new to SOLR and Java as well. My question may be very basic. I am trying to write a java client for SOLR - do I need a SOLR response XSD to generate Java classes and process SOLR query response.

How is an SOLR response usually processed in practice?

Rajesh Loganathan
  • 11,129
  • 4
  • 78
  • 90
Harish
  • 15
  • 4

1 Answers1

0

No need for XSD. For a basic way to query Solr, your client can access the Solr REST interface. It can return JSON, and you can parse it as explained here:

How to parse JSON in Java

In practice, the query response is often processed in Javascript or some other language.

Community
  • 1
  • 1
rleir
  • 791
  • 1
  • 7
  • 19