如何将请求发送到localhost:1080 port 使用mockserver?

qij5mzcb  于 2021-07-09  发布在  Java
关注(0)|答案(0)|浏览(226)

我正在尝试将模拟服务器添加到我的项目中。我决定为此设置模拟服务器。我把这个添加到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 正在服务器端口[1080]上运行
我如何为我的请求测试这个模拟端口这是我的正常端口:http/localhost:8226/employee/list
我想用模拟服务器处理相同的请求,比如:http/localhost:1080/employee/list 但这个申报表4040找不到?我错过了什么?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题