使用 Hibernate Search 实现分面搜索 +春季MVC
我正在寻找使用 Spring MVC 和 Hibernate Search 实现分面搜索的建议和工作示例。
I am looking for suggestions and working sample for implementing Faceted Search using Spring MVC and Hibernate Search.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您到底在寻找什么? Hibernate Search 文档包含 Faceting API 的示例,Hibernate Search 源代码中还有一些测试,展示了如何使用该 API。如果在搜索过程中启用了分面,您可以通过以下方式获取分面列表:
将此列表粘贴到渲染阶段可用的范围中,您应该能够迭代分面并根据您的喜好构建页面。
What exactly are you looking for? The Hibernate Search documentation contains examples for the faceting API and there also some tests in the Hibernate Search source code which show how to use the API. If faceting is enabled during a search you can get a list of facets via:
Stick this list into a scope which is available during the rendering phase and you should be able to iterate over the facets and build the page to your liking.