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