标签: java spring solr
我们在春天使用SolrTemplate将solr与我们的应用程序集成。 对于特定情况,我们希望通过对字段进行分组并突出显示所有文档中的匹配内容来获得结果。这可以通过使用solr Web UI实现。
样品申请: http://127.0.0.1:8983/solr/SearchDocument/select?q=messageContent%3Asan&wt=json&indent=true&hl=true&hl.fl=messageContent&hl.simple.pre=%3Cem%3E&hl.simple.post=%3C%2Fem%3E&group=true&group.field=type_message&group.limit=10
但是当我们使用solrTemplate.queryForHighlightPage(query,test.class)执行相同操作时,我们无法获得所需的结果。我可以看到分组内容,但不能看到突出显示的内容。
使用solrTemplate