change port to avoid conflict

This commit is contained in:
Loredana Crusoveanu 2022-10-03 17:24:21 +03:00
parent d13c1551f7
commit eb9cd1d318
3 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@FeignClient(name = "product-client", url = "http://localhost:8081/product/", configuration = FeignConfig.class)
@FeignClient(name = "product-client", url = "http://localhost:8084/product/", configuration = FeignConfig.class)
public interface ProductClient {
@RequestMapping(value = "{id}", method = RequestMethod.GET)

View File

@ -27,9 +27,10 @@ public class ProductClientUnitTest {
@Before
public void startWireMockServer() {
wireMockServer = new WireMockServer(8081);
configureFor("localhost", 8081);
wireMockServer = new WireMockServer(8084);
configureFor("localhost", 8084);
wireMockServer.start();
}
@After

View File

@ -20,7 +20,6 @@ import static com.github.tomakehurst.wiremock.client.WireMock.*;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
@RunWith(SpringRunner.class)
@WebMvcTest(ProductController.class)
@ImportAutoConfiguration({FeignAutoConfiguration.class, TestControllerAdvice.class})
@ -37,8 +36,8 @@ public class ProductControllerUnitTest {
@Before
public void startWireMockServer() {
wireMockServer = new WireMockServer(8081);
configureFor("localhost", 8081);
wireMockServer = new WireMockServer(8084);
configureFor("localhost", 8084);
wireMockServer.start();
}