Hi team, how to group recordings under BE API spec...
# wiremock-java
r
Hi team, how to group recordings under BE API specific folder like PRS, IQZ such as:
Copy code
mappings
     ---> PRS
     ---> IQZ
Currently I am using wiremock standalone server to implement the API recording.
This is the command I used:
Copy code
java -jar wiremock-standalone-3.9.1.jar --record-mappings
With above command, all record will saved under mappings folder
r
i think you'll have to move the mappings yourself if you want them sorted into different directories
r
Thanks for your reply. I saw these issues https://github.com/wiremock/wiremock/issues/1 I just try to be able to specify sub directories for recorded files by files' name. Such as
Copy code
mappings
     ---> PRS
     ---> IQZ
all PRS APIs are stored in PRS folder. After I read the issue 1, so I think
Copy code
--root-dir
this command may resolve my issue?