Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 1.2 KB

File metadata and controls

65 lines (44 loc) · 1.2 KB

Resilience4j Example

Introduction

This example shows how to use Camel with Resilience4j EIP as circuit breaker in Camel routes

The example includes three sub maven modules that implement

  • client

  • service1

  • service2

Where client → service1 client → service2 (fallback)

Build

You will need to compile this example first:

$ mvn compile

Run the example

Then using three different shells and run service1 and service2 before the client.

$ cd service1
$ mvn spring-boot:run

When service1 is ready then start service2

$ cd service2
$ mvn spring-boot:run

And then start the client that calls service1 every second.

$ cd client
$ mvn spring-boot:run

You can then stop service1 and see that the client should fallback to call service2 in the Resilience EIP circuit breaker. And then start service 1 again and see the Resilience EIP go back to normal.

Help and contributions

If you hit any problem using Camel or have some feedback, then please let us know.

We also love contributors, so get involved :-)

The Camel riders!