错误:接口调用时出现:PathVariable annotation was empty on param 0
原因: 问题在于 @PathVariable注解的使用 (@RequestParam也一样)
controller中 方法名称 findStore(@PathVariable String storeId) 这样使用没有问题,但是在使用@FeignClient注解去调用接口的时候,会报这样的错误,只要将findStore(@PathVariable String storeId) 修改为findStore(@PathVariable("storeId") String storeId)