I'm trying to connect from my Java code to a Solr server running 5.3.1 using the same version of SolrJ. I keep getting a message in Eclipse that HttpSolrServer is deprecated, but cannot find anywhere what it has been replaced with. Does anyone know how I can connect to Solr from Java using SolrJ using something current? The SolrJ documentation all seems to suggest that HttpSolrServer is the supported way, but Eclipse is not happy about it.
4 Answers
2
votes
1
votes
Eclipse marks every class that has @Deprecated annotation as deprecated.HttpSolrServer was deprecated indeed and HttpSolrClient is its replacment
SolrClient solrClient = new HttpSolrClient.Builder(solrLocation).build();
0
votes
public class SolrCient {
private static final Logger LOGGER = Logger.getLogger(SolrCient.class.getName());
private static final String SERVER_URL = "http://localhost:8983/solr/suggest";
public static void main(String[] args) throws IOException, SolrServerException {
HttpSolrClient solr = new HttpSolrClient(SERVER_URL);
QueryResponse response = solr.query(new SolrQuery("*:*"));
System.out.println(response.toString());
}
}