4

我有一个像这样设置的 OpenFeign 客户端:

@FeignClient(name = "myService", qualifier = "myServiceClient", url = "${myservice.url}")
public interface MyServiceClient {
...
}

和这样设置的 Spring Boot 测试:

@SpringBootTest(webEnvironment = RANDOM_PORT, classes = MyApplication.class)
@RunWith(SpringRunner.class)
@EnableFeignClients(clients = MyServiceClient .class)
public class ReservationSteps {
...
}

该测试应该启动应用程序并使用 Feign 客户端向其发送请求。

问题是 RANDOM_PORT 值。

如何在属性文件中声明“myservice.url”属性以使其包含正确的端口?

我试过这个:

myservice.url=localhost:${local.server.port}

但它会导致“localhost:0”。

我不想为端口使用常量值。

请帮忙。谢谢!

4

1 回答 1

1

我知道这是一个老问题,但也许这个答案会对某人有所帮助


作为一种解决方法,我们可以做的是让主机解析到 Spring Ribbon。然后,您将在测试开始之前动态配置主机。

首先,如果您还没有 maven 依赖项,请添加它

<dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
   <scope>test</scope>
</dependency>

然后将您的测试配置为使用主机的“空”配置 url 运行,这是myservice.url此处的属性

@SpringBootTest(webEnvironment = RANDOM_PORT, classes = MyApplication.class)
@RunWith(SpringRunner.class)
@EnableFeignClients(clients = MyServiceClient.class)
@TestPropertySource(properties = "myservice.url=") // this makes sure we do the server lookup with ribbon
public class MyTest {
   ...
}

然后,在一个@Before方法中,我们需要做的就是将服务 url 提供给功能区,我们可以通过一个简单的方法来做到这一点System.setProperty()

public class MyTest {

    @LocalServerPort
    private int port;

    @Before
    public void setup() {
        System.setProperty("MyServiceClient.ribbon.listOfServers", "http://localhost:" + port);
        ...
    }
于 2020-03-22T09:00:06.493 回答