我正在使用弹簧数据 jpa 和 JQGrid。我需要基于多个排序参数的响应。我尝试使用 sort parameter=column a,column b 和 sort order=asc 但出现异常
:在 pojo 中找不到属性列 a、列 b。
如果我将其中一列作为排序参数传递,它会起作用。代码:
Pageable pageable = JPAUtility.constructPageSpecification(pageNumber, rowsPerPage, sortColName, sortOrder);
如何在sortColName
参数中传递多个列名?