Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikamelashvili/saga-pattern
Saga data pattern using Spring boot
https://github.com/nikamelashvili/saga-pattern
elasticsearch mysql saga saga-pattern sprign-boot spring
Last synced: 1 day ago
JSON representation
Saga data pattern using Spring boot
- Host: GitHub
- URL: https://github.com/nikamelashvili/saga-pattern
- Owner: NikaMelashvili
- Created: 2024-10-28T18:26:52.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-11-14T08:55:20.000Z (2 months ago)
- Last Synced: 2024-11-23T06:19:12.517Z (2 months ago)
- Topics: elasticsearch, mysql, saga, saga-pattern, sprign-boot, spring
- Language: Java
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Saga Pattern using Spring boot
For basic overview you can read the [blog post](https://www.baeldung.com/cs/saga-pattern-microservices).
## Running the app
1) Make sure to run the docker-compose.yml file
```
docker-compose up -d
```2) Run the SQL File provided in the resources tab
3) Build project with maven
```
mvn clean compile
```
If you want to run it externally you can use the following command:
```
mvn clean package -DskipTests=true
```