return new ModelAndView("category/categories", "categories", categories);
}
public ModelAndView showCategory(HttpServletRequest request,
HttpServletResponse response) throws Exception {
DocumentCategory category = categoryService.getCategory(getId(request));
return new ModelAndView("category/category", "category", category);
}