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

时间:2014-06-23 07:19:24

标签: 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;

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

非常感谢!

1 个答案:

答案 0 :(得分:5)

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

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

其中“childField”是被索引的“字段/属性”的名称。