@PathVariable(“xxx”)
通过 @PathVariable 可以将URL中占位符参数{xxx}绑定到处理器类的方法形参中@PathVariable(“xxx“)
@RequestMapping(value=”user/{id}/{name}”)
请求路径:http://localhost:8080/hello/user/1/root
例如:
@GetMapping("cid/{cid}")public ResponseEntity<List<Brand>> queryBrandByCid(@PathVariable("cid") Long cid) {return ResponseEntity.ok(brandService.queryBrandByCid(cid));}
访问方式如下:
localhost:8081/brand/cid/76
其中brand是全局的;