private IndexAccessorService indexAccessorService;
private CategoryService categoryService;
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
IndexInformations infos = indexAccessorService.getIndexInformations();
List categories = categoryService.getCategories();
Map model = new HashMap();
model.put("infos", infos);
model.put("categories", categories);
return new ModelAndView("indexing/indexInfos", model);