change port to avoid conflict
This commit is contained in:
parent
d13c1551f7
commit
eb9cd1d318
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue