在Mongodb中设置嵌入文档的索引

EK.*_*EK. 3 java spring mongodb spring-data

我使用mongodb + springdata.我的文档看起来像:

@Entity
@Document(collection="MyCollection")
public final class InfoItemMongoDBDocument {

    @Id
    private ObjectId id;

    @Column
    private String name;

    @Column
    @Indexed
    private int isFixed = 0;


    @Column
    private List<DocumentCopies> copy;
Run Code Online (Sandbox Code Playgroud)

DocumentCopies在哪里是POJO.是否可以使用Spring数据注释在DocumentCopies字段之一上设置其他索引.

非常感谢!

Nei*_*unn 5

是的,您需要一个"点符号"形式,引用您要编入索引的其他POJO中的字段:

@Document(collection="MyCollection")
@CompoundIndexes({
    @CompoundIndex( name="copy.childField", def="{'copy.childField': 1}")
})
Run Code Online (Sandbox Code Playgroud)

其中"childField"是被索引的"字段/属性"的名称.