使用@PathVariable注解
注解作用:用于方法参数上,表示参数的值来源于URL路径,原因是传统的RESTful风格无法使用 request.getParameter方法来获取参数了.
通过 @PathVariable 可以将 URL 中占位符参数绑定到控制器处理方法的入参中:URL 中的 {xxx} 占位符可以通过@PathVariable(“xxx”) 绑定到操作方法的入参中。
也可以用Map来接收
@GetMapping("/userInfo/{id}/ceui/{ceui}")
public Object getUserInfo2(@PathVariable Map<String, String> map) {
System.err.println(map);
return null;
}
postman请求
http://localhost:8080/userInfo/2/ceui/2423
这样后台也能接收到参数.