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
Copying issue from kptfh#13 as it is still reproducible.
Final request path: ReactiveFeignClient.path + "/" + GetMapping.value
If GetMapping.value is default "/" is added anyway.
The behavior is different from FeignClient
Example: @GetMapping(produces = MediaType.APPLICATION_JSON_UTF8_VALUE) Result get(@RequestParam(value = "param") );
@ReactiveFeignClient( path = "/my/path", )
Expected (non reactive feign-client behaviour): /my/path?param=...
Real: additional '/' is added after ReactiveFeignClient.path /my/path/?param=...
The text was updated successfully, but these errors were encountered:
Copying issue from kptfh#13 as it is still reproducible.
Final request path: ReactiveFeignClient.path + "/" + GetMapping.value
If GetMapping.value is default "/" is added anyway.
The behavior is different from FeignClient
Example:
@GetMapping(produces = MediaType.APPLICATION_JSON_UTF8_VALUE) Result get(@RequestParam(value = "param") );
@ReactiveFeignClient( path = "/my/path", )
Expected (non reactive feign-client behaviour):
/my/path?param=...
Real: additional '/' is added after ReactiveFeignClient.path
/my/path/?param=...
The text was updated successfully, but these errors were encountered: