@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");
正在返回空值。