赞
踩
进入wiremock的官网,下载wiremock的jar包。
java -jar wiremock-jre8-standalone-2.32.0.jar
出现以上字样即为运行成功。(不要关闭这个cmd窗口,否则会关闭这个服务)
简单说一下wiremock的原理:刚刚运行的jar包wiremock服务器,看命令行信息可以发现,该服务器运行在8080端口。然后此时你用浏览器去访问“localhost:8080”你就能访问到这个服务器了,但是此时由于这个服务器还没有配置什么模拟的请求,因此返回的错误信息,此时你需要编写java代码去指导这个服务器模拟你需要的一些请求。
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock</artifactId>
<version>2.27.0</version>
</dependency>
package com.peterpen.wiremock; import org.apache.commons.io.FileUtils; import org.springframework.core.io.ClassPathResource; import java.io.IOException; import static com.github.tomakehurst.wiremock.client.WireMock.*; /** * @author: peterpen * @create: 2022-01-22 12:26 **/ public class WireMockClient { public static void main(String[] args) throws IOException { configureFor(8080); removeAllMappings(); mock("/a","1.txt"); } public static void mock(String url,String file) throws IOException { ClassPathResource resource = new ClassPathResource("wiremock/"+file); String result = FileUtils.readFileToString(resource.getFile()); stubFor(get(urlPathEqualTo(url)).willReturn(aResponse().withBody(result).withStatus(200))); } }
在classpath下还要新建wiremock文件夹,其中放着1.txt文件。(1.txt文件的内容就是返回的json数据)
3.运行这个java类,浏览器访问localhost:8080/a
至此,部署成功。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。