@RequestMapping
 public String showAll(Model model) {
   model.addAttribute("items", itemService.findAll());
   return "items";
 }