我必须将Spring 3迁移到Spring 5.在Spring 3中, SimpleFormController 已经被弃用,在新版本中完全缺失,原因是强烈鼓励基于注释的控制器配置。所以说我有以下课程:
public class SpecificController extends SimpleFormController {
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response) throws Exception {
ModelAndView modelAndView = super.handleRequestInternal(request, response);
// set all sorts of things on modelAndView object
return modelAndView;
}
}
如何使用此方法重写此类以进行注释?
部分
// set all sorts of things on modelAndView object
非常重要,因此操作生成的modelAndView对象至关重要。