gpt4 book ai didi

spring-boot - 使用@pathparam和@requestmapping获取null

转载 作者:行者123 更新时间:2023-12-03 14:41:39 26 4
gpt4 key购买 nike

我正在使用spring-boot 1.4.3.RELEASE创建Web服务,但是,当使用http://localhost:7211/person/get/ram发出请求时,id属性为null

@RequestMapping(value="/person/get/{id}", method=RequestMethod.GET, produces="application/json")
public @ResponseBody Person getPersonById(@PathParam("id") String id) {
return personService.getPersonById(id);
}

你能建议我吗,我有想念的东西吗?

最佳答案

获取路径变量的注释是 @PathVariable 。看来您使用了@PathParam,这是不正确的。

查看此以获取更多详细信息:

requestparam-vs-pathvariable

关于spring-boot - 使用@pathparam和@requestmapping获取null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41657428/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com