HttpServletResponse response, Object handler,
ModelAndView modelAndView) throws Exception {
Widget widget = AnnotationUtils.findAnnotation(handler.getClass(), Widget.class);
if(widget!=null) {
postHandleWidget(new HttpWidgetRequest(request),
new HttpWidgetResponse(response), handler, modelAndView);
}
}