Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danilodeluca/circuit-breaker-microprofile
https://github.com/danilodeluca/circuit-breaker-microprofile
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/danilodeluca/circuit-breaker-microprofile
- Owner: danilodeLuca
- Created: 2023-12-01T21:18:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-13T18:29:11.000Z (10 months ago)
- Last Synced: 2024-12-12T20:37:48.605Z (22 days 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.![img_3.png](docs/microprofile.png)
https://github.com/eclipse/microprofile-fault-tolerance
![img_2.png](docs/openliberty.png)
https://openliberty.io/docs/latest/overview.html
![img.png](docs/jakartaee.png)
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