select * from table where a='a' and b='b' order by c asc,d desc;
就是根据两个条件进行排序。
在spring data for jpa 中,存在一个pageable接口,是对查询分页的一个利器。
pageable实现类的构造方法中有个Sort参数,可以按照列属性进行排序。通过查看Sort类的构造方法,我们对Sort这个类进行一下分析,Sort类中存在一下几个构造方法:
1.public Sort(Order...
orders);
2.public Sort(List<Order> orders);
3.public Sort(String...
properties);
4.public Sort(Direction
direction, String... properties);
5.public Sort(Direction
direction, List<String> properties);
大概这几种构造方法,其中Direction 是用来标识按照列属性升序还是降序排序的。
properties即为列属性。
因为我们要排列的两个属性升序和降序都存在,4、5方法由于只能够实用一种排序方向,所以不能采用。
方法3只是输入列属性,按照默认的排序方式(ASC),因此也不能满足要求。
接下来我们看构造方法1和2,性质相同,主要是Order类的用途是怎样的。
看一下Order类的构造方法:
public Order(Direction
direction, String property);
可以看到一个Order维护一个Direction 和一个列属性,正式我们所要的。
所以采用如下的方法:
List< Order>
orders=new ArrayList< Order>();
orders.add( new Order(Direction. ASC, "c"));
orders.add( new Order(Direction. DESC, "d"));
Pageable pageable= new PageRequest(pageNumber,
pageSize, new Sort(orders));
jpaRepo.findByAAndB(a,b,pageable);