onlyforkbj / event-driven-restaurant

Microservices & Event Sourcing demonstration

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Event Driven Restaurant

This project demonstrate the use of Event Sourcing and CQRS in the context of a Microservices-based system. It consists of a very simple online restaurant application composed by three services: Menu, Customers, and Orders. The intention is to demonstrate the architecture proposed in this talk: When Microservices meet Event Sourcing, presented at:

Tech Stack

Running

Ensure you have a recent version of Java, Maven, and RabbitMQ.

$ cd menu
$ mvn clean install
$ mvn -Dserver.port=8080 spring-boot:run &
$ cd ../customers
$ mvn clean install
$ mvn -Dserver.port=8081 spring-boot:run &
$ cd ../orders
$ mvn clean install
$ mvn -Dserver.port=8082 spring-boot:run &

About

Microservices & Event Sourcing demonstration


Languages

Language:Java 77.6%Language:Shell 13.6%Language:Batchfile 8.7%