|
这两天写了个查询功能,datagrid中设置maplist 和count,结果发现没分页,用hql查询的列表却没发现分页问题,不知道啥原因,请高手解答。
java的写法是:
List<Map<String,Object>> maplist= systemService.findForJdbc(sqlStb1.toString(), new Object[]{starttime,endtime});
Long count = systemService.getCountForJdbcParam(sqlStb2.toString(), new Object[]{starttime,endtime});
dataGrid.setTotal(count.intValue());
dataGrid.setResults(maplist);
TagUtil.datagrid(response, dataGrid);
前端传进来的datagrid对象属性中page=1, rows =10,结果页面网格中700多条记录全部显示出来,没有分页,这是什么原因?
|
|