package io.renren.common.client; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; @FeignClient("crm-jr-trans") @RequestMapping("/api") public interface TestFeignClient { @GetMapping("/getName") String getName(@RequestParam("name") String name); }