Browse Source

Sync docs from master to gh-pages

gh-pages
buildmaster 5 years ago
parent
commit
1f810ee84a
  1. 8
      reference/html/index.html
  2. 8
      reference/html/spring-cloud-openfeign.html

8
reference/html/index.html

@ -341,9 +341,6 @@ You can customize the HTTP client used by providing a bean of either <code>org.a @@ -341,9 +341,6 @@ You can customize the HTTP client used by providing a bean of either <code>org.a
<p><code>Logger.Level</code></p>
</li>
<li>
<p><code>Retryer</code></p>
</li>
<li>
<p><code>ErrorDecoder</code></p>
</li>
<li>
@ -361,6 +358,11 @@ You can customize the HTTP client used by providing a bean of either <code>org.a @@ -361,6 +358,11 @@ You can customize the HTTP client used by providing a bean of either <code>org.a
</ul>
</div>
<div class="paragraph">
<p>A bean of <code>Retryer.NEVER_RETRY</code> with the type <code>Retryer</code> is created by default, which will disable retrying.
Notice this retrying behavior is different from the Feign default one, where it will automatically retry IOExceptions,
treating them as transient network related exceptions, and any RetryableException thrown from an ErrorDecoder.</p>
</div>
<div class="paragraph">
<p>Creating a bean of one of those type and placing it in a <code>@FeignClient</code> configuration (such as <code>FooConfiguration</code> above) allows you to override each one of the beans described. Example:</p>
</div>
<div class="listingblock">

8
reference/html/spring-cloud-openfeign.html

@ -341,9 +341,6 @@ You can customize the HTTP client used by providing a bean of either <code>org.a @@ -341,9 +341,6 @@ You can customize the HTTP client used by providing a bean of either <code>org.a
<p><code>Logger.Level</code></p>
</li>
<li>
<p><code>Retryer</code></p>
</li>
<li>
<p><code>ErrorDecoder</code></p>
</li>
<li>
@ -361,6 +358,11 @@ You can customize the HTTP client used by providing a bean of either <code>org.a @@ -361,6 +358,11 @@ You can customize the HTTP client used by providing a bean of either <code>org.a
</ul>
</div>
<div class="paragraph">
<p>A bean of <code>Retryer.NEVER_RETRY</code> with the type <code>Retryer</code> is created by default, which will disable retrying.
Notice this retrying behavior is different from the Feign default one, where it will automatically retry IOExceptions,
treating them as transient network related exceptions, and any RetryableException thrown from an ErrorDecoder.</p>
</div>
<div class="paragraph">
<p>Creating a bean of one of those type and placing it in a <code>@FeignClient</code> configuration (such as <code>FooConfiguration</code> above) allows you to override each one of the beans described. Example:</p>
</div>
<div class="listingblock">

Loading…
Cancel
Save