使用Feign的时候,如果参数中带有

@PathVariable形式的参数,则要用value=""标明对应的参数,否则会抛出IllegalStateException异常

@GetMapping("/payment/get/{id}")
public CommonResult<Payment> getPaymentById(@PathVariable(value = "id") String id);

相关文章: