使用 Hibernate Search 实现分面搜索 +春季MVC

发布于 2024-11-27 08:29:45 字数 60 浏览 1 评论 0原文

我正在寻找使用 Spring MVC 和 Hibernate Search 实现分面搜索的建议和工作示例。

I am looking for suggestions and working sample for implementing Faceted Search using Spring MVC and Hibernate Search.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

祁梦 2024-12-04 08:29:45

您到底在寻找什么? Hibernate Search 文档包含 Faceting API 的示例,Hibernate Search 源代码中还有一些测试,展示了如何使用该 API。如果在搜索过程中启用了分面,您可以通过以下方式获取分面列表:

List<Facet> facets = facetManager.getFacets( "myFacet" );

将此列表粘贴到渲染阶段可用的范围中,您应该能够迭代分面并根据您的喜好构建页面。

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:

List<Facet> facets = facetManager.getFacets( "myFacet" );

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文