当前位置: 代码迷 >> 综合 >> @PathVariable(xxx)访问方式
  详细解决方案

@PathVariable(xxx)访问方式

热度:12   发布时间:2023-11-20 07:26:40.0

@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是全局的;