You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to add a context path (e.g., /my-app) to the requests generated by Spring REST Docs when using WebTestClient. Currently, the generated cURL commands do not include the context path:
$ curl 'http://localhost:4444/accounts/123/dummy' -i -X GET
I would like them to reflect the context path, like this:
$ curl 'http://localhost:4444/my-app/accounts/123/dummy' -i -X GET