}
public void postHandle(HttpServletRequest request,
HttpServletResponse response, Object handler,
ModelAndView modelAndView) throws Exception {
Controller controller = AnnotationUtils.findAnnotation(handler.getClass(), Controller.class);
if(controller!=null) {
postHandleController(request, response, handler, modelAndView);
}
}