Wiremock with Spring Boot: what is blob store?
@SpringBootApplication public class WiremockDemoApplication implements CommandLineRunner { private WireMockServer wireMockServer; public static void main(String[] args) { SpringApplication.run(WiremockDemoApplication.class, args); } @Override public void run(String… args) throws Exception { wireMockServer = new WireMockServer(options() .port(8090)); wireMockServer.start(); wireMockServer.stubFor(get(urlPathEqualTo(“/bind-test”)) .willReturn(aResponse() .withBodyFile(“stub_1.json”) .withHeader(“header1”, “yks”) //.withBody(“heipta”) .withStatus(200))); } } Returns error : com.github.tomakehurst.wiremock.admin.NotFoundException: Not found in blob store: stub_1.json What is “blob […]