【SpringBoot项目报错】org.springframework.web.bind.MissingPathVariableException

报错一:

org.springframework.web.bind.MissingPathVariableException: Required URI template variable 'id' for method parameter type Long is not present

原因:

@GetMapping("/getInfo")
public BaseResponse getInfo(@PathVariable("id") Long id){
    return xxx;
}

postman ->  http://ip:prot/xxxxx/getInfo?id=1

解决方法有两种:

一、@PathVariable 改为 @RequestParam 即可

二、@GetMapping("/getInfo") 改为 @GetMapping("/getIn/{id}")

        postman ->  http://ip:port/xxxxx/getInfo/1

报错二:

org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'ids' for method parameter type Long[] is not present

原因:
@DeleteMapping("/delete")
public BaseResponse delete(@RequestParam("ids") Long[] ids) {
    return xxx;
}

解决方法:

@RequestParam 改为 @PathVariable ,@DeleteMapping("/delete") 改为 @DeleteMapping("/delete/{ids}")

 postman ->  http://ip:port/xxxxx/delete/122222,3333334

 postman ->  http://ip:port/xxxxx/delete/166666

转载请说明出处内容投诉
CSS教程_站长资源网 » 【SpringBoot项目报错】org.springframework.web.bind.MissingPathVariableException

发表评论

欢迎 访客 发表评论

一个令你着迷的主题!

查看演示 官网购买