在使用solrj建立索引的时候,报错:missing content stream;
原因在于
HttpSolrServer httpSolrServer = new HttpSolrServer(sorlurl);
try {
httpSolrServer.add(docList);
httpSolrServer.commit();
} catch (SolrServerException | IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
程序执行时,docList为空,没有文档能够被用于建立索引