问题:
单元测试中如何注入 FeignClient
解决:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
//------------- // HelloControllerTest @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT) @AutoConfigureMockMvc @ActiveProfiles("unittest") @EnableFeignClients(basePackages = "demo.api") public abstract class UserControllerTest { @Test void testGet(@Autowired UserClient client) { var r = client.get("tcm_tenant"); assertNotNull(r); } } //--------- //application-unittest.yml server: port: 10020 feign: client: config: apiaa: url: http://localhost:${server.port} ------ //UserClient.java package demo.api; @FeignClient(name = "api1", contextId = "UserClient", url = "${feign.client.config.api1.url}") public interface UserClient { @GetMapping("/v1/user") UserResp get(@RequestParam("id") @NotBlank String id); } |
参考: