Skip to content

Sample application using Spring Boot, Axon, AngularJS and Websockets

Notifications You must be signed in to change notification settings

talipkorkmaz/spring-boot-axon-sample

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot Axon Sample

Introduction

This is a sample application to demonstrate Spring Boot (1.5.x) and Axon Framework (3.x).

The Todo application makes use of the following design patterns:

  • Domain Driven Design
  • CQRS
  • Event Sourcing
  • Task based User Interface

Building

mvn package

Running

mvn spring-boot:run

Browse to http://localhost:8080/index.html

Access h2_console

  • Username : sa
  • Password :
  • JDBC Url : jdbc:h2:mem:testdb
  • Driver Class : org.h2.Driver

Implementation

Implementation notes:

  • The event store is backed by a JPA Event Store implementation which comes with Axon
  • The query model is backed by a Spring Data JPA Repository
  • The user interface is updated asynchronously via stompjs over websockets using Spring Websockets support

Roadmap

  • Add unit and integration tests
  • Replace JPA EventStore with AxonDB
  • Convert AngularJS to Angular, ReactJS or other

Documentation

About

Sample application using Spring Boot, Axon, AngularJS and Websockets

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 48.4%
  • JavaScript 19.2%
  • CSS 16.3%
  • HTML 16.1%