【郑州校区】查询索引库数据之以JavaBean形式返回查...
[AppleScript] 纯文本查看 复制代码 @Test
public void queryBeanTest() throws SolrServerException, IOException {
// 连接solr服务器
HttpSolrServer solrServer = new HttpSolrServer("http://localhost:8080/solr/core2");
// 创建查询条件对象
SolrQuery params = new SolrQuery("*:*");
// 执行查询,获取响应数据
QueryResponse response = solrServer.query(params);
// 获取结果集数据
List<Item> list = response.getBeans(Item.class);
// 处理结果集
System.out.println("一共获取了" + list.size()+"条结果:");
for (Item item : list) {
System.out.println("id: " + item.getId());
System.out.println("title:" + item.getTitle());
}
}
传智播客·黑马程序员郑州校区地址 河南省郑州市 高新区长椿路11号大学科技园(西区)东门8号楼三层
|