码迷,mamicode.com
首页 > 编程语言 > 详细

org.springframework.web.bind.MissingPathVariableException: Missing URI template variable 'token' for method parameter of type String

时间:2020-09-18 03:34:26      阅读:47      评论:0      收藏:0      [点我收藏+]

标签:log   lang   boot   iss   exce   错误   pre   exception   web   

spring boot项目中报此错误,可能的原因是

  1. 在GetMapping中没有指定参数名

    @GetMapping("/verifyLogin")
    public HttpResult verifyLogin(@PathVariable("token") String token)
    

    正确的应该是:

    @GetMapping("/verifyLogin/{token}")
    public HttpResult verifyLogin(@PathVariable("token") String token)
    

org.springframework.web.bind.MissingPathVariableException: Missing URI template variable 'token' for method parameter of type String

标签:log   lang   boot   iss   exce   错误   pre   exception   web   

原文地址:https://www.cnblogs.com/wangrongwen/p/13682029.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!