Skip to content

veyga/event-driven-airline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

event-driven-airline

demonstrating DDD, CQRS, event sourcing, and the Axon framework with a simplified example

The concepts of DDD (Domain Driven Design), CQRS (Command Query Responsibility Segregation), and Event Sourcing are quite deep. The following LINK, should help to explain.

-DDD: Essentially, DDD revolves around domain-driven terminology in code, and limits interaction of domain entities to the concept of aggregates.
-CQRS: In most applications, you have significantly more reads than writes. CQRS helps to split apart actions which change application state (commands) from actions which query state (queries), in order to help scalability.
-Event Sourcing: Event sourcing is the concept of building state from a series of events. Rather than maintaining application state, every bit of state information is built up from an application of domain event streams.

The Axon Framework is a Java framework which helps to implement applications which adhere to these design principles.

This application is a prototype for an airline booking system. It is not fully functional but should help one get a glimpse into the aforementioned concepts.

These ideas (especially event storming and event sourcing) are awesome, and I hope they catch on!

About

demonstrating DDD, CQRS, event sourcing, and the Axon framework with a simplified example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published