标签:log lang boot iss exce 错误 pre exception web
spring boot项目中报此错误,可能的原因是
在GetMapping中没有指定参数名
@GetMapping("/verifyLogin")
public HttpResult verifyLogin(@PathVariable("token") String token)
正确的应该是:
@GetMapping("/verifyLogin/{token}")
public HttpResult verifyLogin(@PathVariable("token") String token)
标签:log lang boot iss exce 错误 pre exception web
原文地址:https://www.cnblogs.com/wangrongwen/p/13682029.html