@RequestMapping(value = "/{methodName}/{responseType}", method = RequestMethod.GET)
public ModelAndView execute(@PathVariable String methodName, @PathVariable String responseType,
HttpServletRequest request, HttpServletRequest response){
Map<String,String> yesMap = new HashMap<String,String>();
}
上記のコードに示すように、{responseType} から渡されたパラメーターのデータ型を取得し、yesMap でパラメーター値に対して同じものを設定する必要があります。
String param=request.getParameter("id");
null 値を返しています。