접두사
If you need multiple Pageable or Sort instances to be resolved from the request (for multiple tables, for example), you can use Spring’s @Qualifier annotation to distinguish one from another. The request parameters then have to be prefixed with ${qualifier}_. The following example shows the resulting method signature: String showUsers(Model model, @Qualifier("thing1") Pageable first, @Qualifier("thing2") Pageable second) { … } You have to populate thing1_page, thing2_page, and so on. 이 부분의 내용으로 확인했습니다. 다만 공식 메뉴얼 또한 예시가 없어서.. uri에서 조건에 맞는 페이지를 보여주는 경우가 상상이 잘 안됩니다. 예를 들어, 한 페이지에 5가지 카테고리 정보가 있는데 이 중 1가지의 카테고리만 특정 정렬조건을 사용하고 나머지 카테고리는 default 정렬조건으로 확인할 때 사용해야 하는 것일까요?