分页的controller方法代码

 


@RequestMapping(value = "/selectall", method = RequestMethod.GET)

            public String userSelectAll(String pageNo, String pageSize,HttpSession session){
                //初始化数值
                int num = 1;
                int size = 3;

                if(pageNo != null && !"".equals(pageNo)) {
                    num = Integer.parseInt(pageNo);
                }
                if (pageSize != null && !"".equals(pageSize)) {
                    size = Integer.parseInt(pageSize);
                }

                //开始分页
                PageHelper.startPage(num,size);

                //查询数据库信息
                List selectallstock = stockservice.selectallstock();    
                //将信息放入PageInfo进行分页
                PageInfo pageInfo = new PageInfo(selectallstock);
                session.setAttribute("pageHelper", pageInfo);                 
                return "all";
            }

你可能感兴趣的:(分页的controller方法代码)