@RequestMapping(value = "/userlist.html")
 public String userList(Locale locale, Model model) {
   model.addAttribute("currentuser", getCurrentUser());
   model.addAttribute("userList", userService.userList());
   return "userlist";
 }