DDD. Event sourcing. CQRS. REST. Modular. Microservices. Kotlin. Spring. Axon platform. Apache Kafka. RabbitMQ
This is a thin layer which coordinates the application activity. It does not contain business logic. It does not hold the state of the business objects
We are utilizing components from the domain layer. This layer contains information about the domain. This is the heart of the business software.
This application is utilizing STOMP over Websockets protocol to expose capabilities of our ‘domain’ via components:
The C4 software architecture model is a simple hierarchical way to think about the static structures of a software system in terms of containers, components and classes (or code).
A System Context diagram can be a useful starting point for diagramming and documenting a software system, allowing you to step back and look at the big picture.
Once you understand how your system fits in to the overall IT environment with a System Context diagram, a really useful next step can be to illustrate the high-level technology choices with a Container diagram. A “container” is something like a web server, application server, desktop application, mobile app, database, file system, etc. Essentially, a container is anything that can execute code or host data.
Following on from a Container diagram showing the high-level technology decisions, you can then start to zoom in and decompose each container further. However you decompose your system is up to you, but this is about identifying the major logical structural building blocks and their interactions.
WebSocket SockJS endpoint: ws://localhost:8080/drestaurant/websocket
/topic/couriers.updates
(courier list has been updated, e.g. new courier has been created)/topic/customers.updates
(customer list has been updated, e.g. new customer has been created)/topic/orders.updates
(order list has been updated, e.g. new order has been created)/topic/restaurants.updates
(restaurant list has been updated, e.g. new restaurant has been created)/topic/couriers/orders.updates
(courier order list has been updated, e.g. new courier order has been created)/topic/restaurants/orders.updates
(restaurant order list has been updated, e.g. new restaurant order has been created)/customers/createcommand
, messageType=[MESSAGE]/customers
, messageType=[SUBSCRIBE]/customers/{id}
, messageType=[SUBSCRIBE]/couriers/createcommand
, messageType=[MESSAGE]/couriers
, messageType=[SUBSCRIBE]/couriers/{id}
, messageType=[SUBSCRIBE]/couriers/orders/assigncommand
, messageType=[MESSAGE]/couriers/orders/markdeliveredcommand
, messageType=[MESSAGE]/couriers/orders
, messageType=[SUBSCRIBE]/couriers/orders/{id}
, messageType=[SUBSCRIBE]/restaurants/createcommand
, messageType=[MESSAGE]/restaurants
, messageType=[SUBSCRIBE]/restaurants/{id}
, messageType=[SUBSCRIBE]/orders/createcommand
, messageType=[MESSAGE]/orders
, messageType=[SUBSCRIBE]/orders/{id}
, messageType=[SUBSCRIBE]/restaurants/orders/markpreparedcommand
, messageType=[MESSAGE]/restaurants/orders
, messageType=[SUBSCRIBE]/restaurants/orders/{id}
, messageType=[SUBSCRIBE]$ cd digital-restaurant/drestaurant-apps/drestaurant-monolith-websockets
$ mvn spring-boot:run