目的のインデックスを作成できません。既存のインデックスをリストします
System.out.println(mongo.getCollection("User").getIndexInfo());
それでも取得のみ
[{ "v" : 1 , "key" : { "_id" : 1} , "name" : "_id_1" , "ns" : "devtest01.User"}]
私は試した
mongo.getCollection("User").createIndex("syncTime");
と
Index indexDefinition = new Index("syncTime", Direction.ASC);
mongo.indexOps("User").ensureIndex(indexDefinition);
結果は相変わらず…