Spring

Spring에 sort.and ()를 사용하는 방법

기록만이살길 2021. 3. 11. 08:03
반응형

Spring에 sort.and ()를 사용하는 방법

1. 질문(문제점):

일부 데이터를 이름 오름차순 및 레이블 (모든 데이터에 태그가 지정됨)별로 정렬하려면 다음과 같이 사용할 수 있습니다.

Sort sort = new Sort(Sort.Direction.ASC, "name")
                .and(new Sort("label"));

2. 해결방안:

이것을 시도하십시오 :

Sort sort = new Sort(Sort.Direction.ASC, "name")
            .and(new Sort(Sort.Direction.ASC, "label"));
65719301
반응형