1. 函数参数名与请求参数名保持一致

@RequestMapping("/delete")
@ResponseBody
public JsonResult delete(Long id){



2. 函数参数名与请求参数名保持不一致

@RequestMapping(value = "/add", method = RequestMethod.POST)
public AjaxResult save(@RequestBody Product product) {




@RequestMapping(value = "/delete/{id}", method = RequestMethod.DELETE)
public AjaxResult delete(@PathVariable("id") Long id) {



@RequestMapping(value = "/{id}", method = RequestMethod.GET)
public Product get(@PathVariable(value = "id", required = true) Long id)
 

 

SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。
扫码关注我们
微信号:SRE实战
拒绝背锅 运筹帷幄