Spring Framework · Example Payload

Spring Circuit Breaker Example

Example Spring Cloud Circuit Breaker configuration using Resilience4J with fallback

Artificial IntelligenceCloud-NativeEnterpriseFrameworkJavaMicroservicesOpen-SourceRESTSpring Boot

Spring Circuit Breaker Example is an example object payload from Spring Framework, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

namedescriptioncomponentconfigurationjavaImplementationstates

Example Payload

Raw ↑
{
  "name": "Circuit Breaker with Resilience4J Example",
  "description": "Example Spring Cloud Circuit Breaker configuration using Resilience4J with fallback",
  "component": "Spring Cloud Circuit Breaker",
  "configuration": {
    "resilience4j.circuitbreaker.instances.userService": {
      "sliding-window-size": 10,
      "failure-rate-threshold": 50,
      "wait-duration-in-open-state": "30s",
      "permitted-number-of-calls-in-half-open-state": 5,
      "slow-call-duration-threshold": "3s",
      "slow-call-rate-threshold": 80
    },
    "resilience4j.circuitbreaker.instances.paymentService": {
      "sliding-window-size": 20,
      "failure-rate-threshold": 25,
      "wait-duration-in-open-state": "60s"
    }
  },
  "javaImplementation": {
    "annotation": "@CircuitBreaker(name = \"userService\", fallbackMethod = \"getUserFallback\")\npublic User getUser(String userId) {\n    return userServiceClient.findById(userId);\n}\n\npublic User getUserFallback(String userId, Exception ex) {\n    return User.defaultUser(userId);\n}",
    "programmatic": "circuitBreakerFactory.create(\"userService\")\n    .run(() -> userServiceClient.findById(userId),\n         throwable -> User.defaultUser(userId));"
  },
  "states": {
    "CLOSED": "Normal operation, requests pass through",
    "OPEN": "Circuit tripped, requests fail fast with fallback",
    "HALF_OPEN": "Testing recovery, limited requests allowed through"
  }
}

Work with this as data

Every example here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for examples

4 MCP tools reach this
  • find_examplesBrowse and filter every example in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This example
curl "https://apis.io/api/v1/examples/spring-circuit-breaker-example"
All examples
curl "https://apis.io/api/v1/examples?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.