获取字段Morphia的最大值

Get the maximum value of the field Morphia

我正在尝试获取 collection 中可用的 maximum/highest 值。

我正在尝试获得员工的最高薪水collection。我们正在使用 Morphia 框架。

 Query<Employee> query = mongoDatastore.find(Employee.class).field("salary").....

//获取employeecollection.

中可用的最高工资

我正在尝试获取员工的最高薪水collection。

谁能帮我知道如何获得员工的最高薪水collection。

获取employee集合的最高薪水,使用order method to sort the collection by salary descending and limit方法组合到returntop 1文档:

Query<Employee> query = mongoDatastore.find(Employee.class).order("-salary").field("salary").limit(1)