如何在春天mvc执行分页?

时间:2015-09-01 09:16:55

标签: spring-mvc

        //this is my controller which gives me a list............
         @RequestMapping("/getList")
             public ModelAndView getList(Model model){
                 List<Employee> empList = empService.getEmpList();  
                  Employee emp=new Employee();
                  model.addAttribute("employee", emp);
                  return new ModelAndView("empList", "empList", empList);  
             } 

我的问题是我在一个页面上有一个员工列表。如果我有100名员工,我需要在下一页显示它们。所以当我点击上一页按钮时,当我按下一页时,显示上一页列表必须通过保留next和prev按钮来显示。请告诉我如何执行它的解决方案。

0 个答案:

没有答案