我有一个端点,在其他属性中,它需要一个可分页的。
众所周知,pageable有三个属性(page、size、sort)。
虽然前两个属性工作正常,我可以通过更改它们的值来操作返回的结果列表,但sort属性没有任何效果。
我的问题是:
http://localhost:8080/api/social/msg/?socialRef=general&fromDate=2020-07-29T22:00:00.000Z&toDate=2020-08-10T14:42:13.325Z&page=0&size=1000&sort=createdAt,desc
以及端点代码:
public PaginatedCollection<SocialMsg> CustomCollectionListAll(Pageable pageable, Date lastModifiedBefore, Date lastModifiedAfter, String socialRef)
return socialService.messages().listAll(toPageableVO(pageable), lastModifiedBefore, lastModifiedAfter, socialRef);
1条答案
按热度按时间r55awzrz1#
确保
createdAt
是jpa使用的类的一个字段,其类型实现了comparable