0
db(最新)に格納された最後のオブジェクトを見つける方法を知る必要があります。私のオブジェクトは、リポジトリ内の関数がSpringとMongoDB最後に格納されたオブジェクトを見つける
@Repository
public interface MyObjectRepository extends MongoRepository<MyObject, String> {
MyObject findByNameAndTimesmapt(String name, int timestamp); // I want to get here latest object
}
のようなルックスを可能と
public class MyObject {
@Field("name")
private String name;
@Field("timestamp")
private int timestamp;
public MyObject(String name, int timestamp) {
this.name = name;
this.timestamp = timestamp;
}
}
My機能オブジェクトもので、私は、これは必ずしもなる場合、最新である認識し、この値を使用することができるタイムスタンプが保存されるべきですコマンド
db.foo.find("name" : "someName"}).sort({"timestamp":-1}).one();
私はこれを見Exacly。どうも! – Mbded