While updating, I got issue because it cut the trailing slash even though using the trailing slash intentionally.
Basically, my API server's endpoint is configured as
/users/{userId}/dogs/ not /users/{userId}/dogs when fetching the overviews of dogs collection without params.
However, with this update PublisherClientMethodHandler cut the trailing endpoint. So, my feign client got 404 Not found (URL).
I expected feign client should request to url with trailing slash if it's configured with trailing slash.
While updating, I got issue because it cut the trailing slash even though using the trailing slash intentionally.
Basically, my API server's endpoint is configured as
/users/{userId}/dogs/
not/users/{userId}/dogs
when fetching the overviews of dogs collection without params.However, with this update
PublisherClientMethodHandler
cut the trailing endpoint. So, my feign client got 404 Not found (URL).I expected feign client should request to url with trailing slash if it's configured with trailing slash.
when:
@RequestLine("GET /users/{userId}/dogs/")
expected:/users/{userId}/dogs/
real:/users/{userId}/dogs