}
@RequestMapping(value = "/dishes/{id}", method = RequestMethod.GET)
protected String getDish(@PathVariable int id, Model model) {
ArrayList<String> names = new ArrayList<String>();
DishModel mod = dishService.getDish(id);
names.add(mod.toString());
model.addAttribute("helloMessage", names);
return "helloPage";
}