springmvc:错误Missing URI template variable XX for method parameter of type String

springmvc:错误Missing URI template variable XX for method parameter of type String,第1张

我在自测中报出来的一个500的错误:

错误写法:

正确:

 

知识点@PathVariable注解:

关于路径变量和模板参数:

  • {id}:路径变量(模板参数)

@PathVariable:

  1. 作用:把路径变量的值,绑定到方法的形参上 该注解的常见写法:
    @PathVariable(name = "id")
    @PathVariable(value = "id")
    @PathVariable("id")
    

  2. 以下两种写法的前提是:路径变量的名称,与方法形参的名称一样
    @PathVariable()
    @PathVariable
    

    综合

    @RequestMapping(value = {"item/{id}"},method = {RequestMethod.GET}) @ResponseBody 
    public Item get(@PathVariable Integer id){
     // 创建商品对象 
     Item item = new Item(); 
     item.setId(id); 
     item.setName("查询商品"); 
     return item; 
     }
    

    注:传参时也需要注意一下!

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/755930.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-30
下一篇 2022-04-30

发表评论

登录后才能评论

评论列表(0条)

保存