@RequestMapping("/list")
  public ModelAndView home(HttpServletRequest request) {
    int page = Integer.parseInt(request.getParameter("page"));
    System.out.println(page);

    ApplicationContext context = new ClassPathXmlApplicationContext("Spring-Module.xml");

    CustomerDAO customerDAO = (CustomerDAO) context.getBean("customerDAO");

    List<Customer> customerList = new ArrayList<Customer>();

    int limit = 15;
    int offset = limit * page;

    customerList = customerDAO.findCustomers(limit, offset);

    ModelAndView model = new ModelAndView("list");
    model.addObject("customerList", customerList);

    return model;
  }