我正在尝试将模拟服务器添加到我的项目中。我决定为此设置模拟服务器。我将此添加到我的 pom.xml 文件中
<plugin>
<groupId>org.mock-server</groupId>
<artifactId>mockserver-maven-plugin</artifactId>
<version>5.11.1</version>
<configuration>
<serverPort>1080</serverPort>
<logLevel>DEBUG</logLevel>
</configuration>
<executions>
<execution>
<id>process-test-classes</id>
<phase>process-test-classes</phase>
<goals>
<goal>runForked</goal>
</goals>
</execution>
</executions>
</plugin>
依赖:
<dependency>
<groupId>org.mock-server</groupId>
<artifactId>mockserver-netty</artifactId>
<version>3.10.8</version>
</dependency>
我在命令行中运行使用
mvn clean install -Dit.skip=false
并返回 mockserver:runForked MockServer is running on: serverPort [1080]
我如何为我的请求测试这个模拟端口这是我的正常端口:http/localhost:8226/employee/list
我想用这样的模拟服务器发出相同的请求:http/localhost:1080/employee/list 但是这个返回 4040 没有找到?我在这里想念什么?