Merge remote-tracking branch 'origin/2.2.x'

This commit is contained in:
Olga MaciaszekSharma
2021-04-20 17:28:31 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
java: ["8", "15", "16"]
java: ["8", "11", "16"]
steps:
- uses: actions/checkout@v2

View File

@@ -351,7 +351,7 @@ To enable Spring Cloud CircuitBreaker group set the `feign.circuitbreaker.group.
[[spring-cloud-feign-circuitbreaker-fallback]]
=== Feign Spring Cloud CircuitBreaker Fallbacks
Spring Cloud CircuitBreaker supports the notion of a fallback: a default code path that is executed when they circuit is open or there is an error. To enable fallbacks for a given `@FeignClient` set the `fallback` attribute to the class name that implements the fallback. You also need to declare your implementation as a Spring bean.
Spring Cloud CircuitBreaker supports the notion of a fallback: a default code path that is executed when the circuit is open or there is an error. To enable fallbacks for a given `@FeignClient` set the `fallback` attribute to the class name that implements the fallback. You also need to declare your implementation as a Spring bean.
[source,java,indent=0]
----