'Wiremock UI to connect to locally running Wiremock standalone server
I have downloaded the wiremock standalone jar locally. And I am starting the standalone server using below command. java -jar wiremock-jre8-standalone-2.26.3.jar --port 8089 & I am placing all the mocked endpoints under the mappings folder.
I need a user interface which can connect to my wiremock server and show me all the mappings. It would be of advantage if the UI could provide features for editing, deleting and adding new files permanently.
Solution 1:[1]
You can take a look at https://github.com/plouc/wiremock-ui and its live demo.
Solution 2:[2]
Use any version from https://github.com/holomekc/wiremock/releases and run executable jar having mocked endpoint JSONs under the mappings folder.If you have not provided port configuration then UI with mapping details will be accessible over URL http://localhost:8080/__admin/webapp
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | DiegoAlfonso |
| Solution 2 | Rakesh Chauhan |
