Add information about decodeSlash property to docs.

This commit is contained in:
Olga Maciaszek-Sharma
2020-12-01 17:08:43 +01:00
parent 49d3830276
commit 1a7917e2bb
2 changed files with 3 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
|Name | Default | Description
|feign.client.config | |
|feign.client.decode-slash | true | Feign clients do not encode slash `/` characters by default. To change this behavior, set the `decodeSlash` to `false`.
|feign.client.default-config | default |
|feign.client.default-to-properties | true |
|feign.compression.request.enabled | false | Enables the request sent by Feign to be compressed.

View File

@@ -274,6 +274,8 @@ public FeignClientConfigurer feignClientConfigurer() {
}
----
TIP: By default, Feign clients do not encode slash `/` characters. You can change this behaviour, by setting the value of `feign.client.decodeSlash` to `false`.
[[timeout-handling]]
=== Timeout Handling