当前位置: 代码迷 >> 综合 >> 使用Feign 报Feign PathVariable annotation was empty on param 0
  详细解决方案

使用Feign 报Feign PathVariable annotation was empty on param 0

热度:42   发布时间:2023-12-18 09:47:43.0

原因是在使用FeignClient时,对@PathVariable没有给出默认名字
应该是:

@PathVariable("name") String s

但是没有给出默认name:

@PathVariable() String s

解决方式:开启参数保留
idea为例
Settings->Java Compiler
在Additonal command line parameters添加-parameters
在这里插入图片描述

  相关解决方案