public class AboutController extends AbstractTimedexController {
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest request,
HttpServletResponse response) throws Exception {
SessionStrategy ss = HibernateSessionStrategy.getInstance();
ss.getCurrentSession();
Map<String, Object> model = new HashMap<String, Object>();
return new ModelAndView("about", "model", model);
}