@RequestMapping(value = {"/new", "/modifyNew"} ) public ModelAndView public getCreate()
I defined my controller method this way to handle both
/new
and /modifyNew
Within my method is there a way to find out by which mapping the request came in ..? Was it new
or modifyNew
? Is this a good way of programming?