1. 程式人生 > >java mongoTemplate mongodb中排序問題

java mongoTemplate mongodb中排序問題

在java中使用mongodb 的 mongoTemplate,遇到排序問題,所以記錄一下

@Override  
public List<Form> sortById() {  
    // TODO Auto-generated method stub  
    Query query = new Query();  
    query.with(new Sort(new Order(Direction.DESC,"id")));  
    List<Form> li = this.mongoTemplate.find(query, Form.class);  
    return li;  
}