Esempio n. 1
0
 /**
  * List.
  *
  * @param model the model
  * @return the string
  */
 @RequestMapping("/list")
 public String list(Model model) {
   model.addAttribute("items", itemService.list());
   return "/item/list";
 }