What is the proper way to forward a request in spring to a different controller?
@RequestMapping({\"/someurl\"}) public ModelAndView execute(Model model) { i
You can use Spring RedirectView to dispatch request from one controller to other controller. It will be by default Request type "GET"
RedirectView
RedirectView redirectView = new RedirectView("/controllerRequestMapping/methodmapping.do", true);