https://github.com/danilodeluca/circuit-breaker-microprofile
https://github.com/danilodeluca/circuit-breaker-microprofile
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/danilodeluca/circuit-breaker-microprofile
- Owner: danilodeLuca
- Created: 2023-12-01T21:18:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-13T18:29:11.000Z (about 1 year ago)
- Last Synced: 2025-02-06T07:13:24.298Z (4 months ago)
- Language: Java
- Size: 193 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Circuit-Breaker-Microprofile
## Objective
The main goal of this project is to simulate an operation of a circuit-breaker, in this case you will learn how to use the implementation of MicroProfile Fault Tolerance.
Also you will enjoy using OpenLiberty and JakartaEE for the rest application.
https://github.com/eclipse/microprofile-fault-tolerance

https://openliberty.io/docs/latest/overview.html

https://jakarta.ee/
## Running
### Locally
Building
```
./mvnw clean install
```Starting application:
```
./mvnw liberty:dev
```### Docker
```
docker build . -t circuit-breaker-app
docker run circuit-breaker-app
```### Heroku
```
docker tag circuit-breaker-app registry.heroku.com/{heroku-app}/web
docker push registry.heroku.com/{heroku-app}/web
heroku container:release web
```asd