http get请求 传参 接收写法

来源:互联网 发布:淘宝助手上传失败 编辑:程序博客网 时间:2024/06/17 02:04

http://10.0.0.60:8080/idc-http/yundou/select/1111111

这种传参方式

@RequestMapping(value="/select/{imei}",method = RequestMethod.GET)@ResponseBodypublic String select(HttpServletRequest request,@PathVariable("imei") String imei) throws UnsupportedEncodingException{
}

这样去接 

通常是?id=123456


0 0