快速开始
Quick Start
最后更新于
Quick Start
最后更新于
Axon provides a Quick Start Toolkit to familarize yourself with the setup required for Axon Framework and Axon Server SE (Standard Edition).
The only pre-requisite to run the Quick Start is to have a Java 8+ JRE in your system.
The Quick Start Toolkit package is available for download at the following location -> .
This package contains,
Axon Framework Binaries
Axon Server Standard Edition
Gift card sample application - Demo application designed to show various aspects of the platform
Getting started guide
Unzip AxonQuickStart-VERSION.zip
Run the : $ java -jar AxonServer/axonserver-VERSION.jar
Axon Server web dashboard should be available here
Run the demo application: $ cd giftcard-demo && ./mvnw spring-boot:run
Demo application should be available here
Explore the README.md
The Quick Start Demo app can also run on Java 8 with a small change in the pom.xml
file:
From the extracted folder, open giftcard-demo\pom.xml
with your favourite editor
Replace <java.version>11</java.version>
occurrency with <java.version>1.8</java.version>
Find the maven-compiler-plugin
plugin block
Replace <release>${java.version}</release>
with <source>${java.version}</source> <target>${java.version}</target>
Run the demo application: $ cd giftcard-demo && ./mvnw spring-boot:run
The following 5-part video tutorial offers a quick start guided path to understand Axon Framework.
Structure of an Axon Framework Application
Core API development
Command Model of the Application
Query Model of the Application
Connecting the UI
This blog is a good starting point to get familiarized with Axon Server -
AxonIQ provides a free to view which will bring you up to speed on topics such as DDD, CQRS, Event Sourcing and other concepts related to the Axon stack.
AxonIQ provides a which provides a more hands-on approach complete with instructor-led content and labs. This program is intended to deepen your knowledge concerning the concepts of event-driven microservices, DDD, CQRS and how Axon supports this journey.