使用 hibernate 按 userId 字段过滤全文搜索结果
Posted
技术标签:
【中文标题】使用 hibernate 按 userId 字段过滤全文搜索结果【英文标题】:Filter full text search results by userId field with hibernate 【发布时间】:2015-03-14 03:34:15 【问题描述】:假设我有 2 个为全文搜索注释的实体:
@Entity
public class User implements Serializable
@Id
public Long id;
...
@Entity
@Indexed
public class Post
@Id
public Long id;
@Field(name = "content")
public String content;
@ManyToOne
public User user;
...
write full text search on just content field 非常简单。但是如何按文本关键字和用户 ID 过滤结果?例如,在内容字段和 user.id 等于 10 上搜索“hello”的查询?
【问题讨论】:
【参考方案1】:您要查找的关键字是注解 IndexedEmbedded。
@ManyToOne
@org.hibernate.search.annotations.IndexedEmbedded(includePaths= "userId" )
public User user;
如果您现在创建 LuceneIndex,LuceneDocument 中将有一个名为 User.userId 的新字段。 您现在可以搜索 UserId(作为字符串)和组合的内容。 请查看 Luke 以检查您的索引文件。
【讨论】:
以上是关于使用 hibernate 按 userId 字段过滤全文搜索结果的主要内容,如果未能解决你的问题,请参考以下文章