MongoRepository排序
解决方法:
其中findAllByDesignerId方法是已实现了MongoRepository的类一个自定义方法
import org.springframework.data.domain.Sort;
taskDoWithDesignerDao.findAllByDesignerId(new Sort(Sort.Direction.DESC, "_id"));
MongoRepository排序
解决方法:
其中findAllByDesignerId方法是已实现了MongoRepository的类一个自定义方法
import org.springframework.data.domain.Sort;
taskDoWithDesignerDao.findAllByDesignerId(new Sort(Sort.Direction.DESC, "_id"));
有建议,请留言!