Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
| 1234567891011121314 |
- 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);
- }
|