Spring 数据 - Mongo 数据库 - @TextIndexed 优于 @DBRef

Spring Data - Mongo DB - @TextIndexed over @DBRef

是否可以通过@DBRef 以某种方式在字符串字段中进行搜索。 我有这个@Document:

public class DocumentFileVersion {

    @TextIndexed
    @DBRef
    private OtherObject otherObject

我将在 otherObject 的字符串字段中搜索。有没有可能做到这一点?

DBRef 仅供 ​​id 引用查询。

所以这是不可能的。您应该重新考虑您的模式结构。