解决配置Feign时报错PathVariable annotation was empty on param 0.
作者:莫失莫忘hh
在配置Feign客户端时,如果遇到`@PathVariable`注解为空的问题,是因为在声明接口方法时没有为`@PathVariable`注解提供`value`属性,解决方法是为`@PathVariable`注解添加`value`属性,这样就可以避免报错,并成功启动Feign客户端
配置Feign的时候报错PathVariable annotation was empty on param 0.
是在声明Feign接口方法时候,使用@PathVariable
注解没有带有value
值。
解决方案
- 将下面代码:
@GetMapping("/dept/{id}") public Dept get(@PathVariable Long id);
- 修改为:
@GetMapping("/dept/{id}") public Dept get(@PathVariable(value="id") Long id);
修改之后,成功启动,未报错。
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。