I am using wireMock to record response from another module, My application is consuming data from so many modules, so I want to record all the responses at a time, Currently, I am trying to record response one by one at a time, with the below command, which is eating lot of time
java -Dhttp.proxyHost=xxx.xx.xx.xx -Dhttp.proxyPort=xx -Dhttps.proxyHost=xxx.xxx.xxx.xx -Dhttps.proxyPort=xx -jar wiremock-standalone-2.4.1.jar --proxy-all="https://xxx-ppe.api.xxx.com" --record-mappings --verbose
Can someone help me how to proxy all those hosts at a time and how to record all of them at a time?