public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    Contact rnd = contactManager.getRandomContact();

    return new ModelAndView("hello", "contact", rnd);
  }