Quick Start
This page shows you how to start building your own application using Axon platform. In order to run this quick start you will need Java 11 installed on your machine.
Get everything you need by downloading QuickStart archive. It contains a simple demo application, designed to show various aspects of the platform.
Unzip
AxonQuickStart.zip
Move to the extracted
cd axonquickstart-VERSION
Run the Axon Server:
$ java -jar AxonServer/axonserver-VERSION.jar
Axon Server web dashboard should be available here
http://localhost:8024/
: moving in the overview page you will see your running instance of the server.Run the demo application:
$ cd giftcard-demo && ./mvnw spring-boot:run
Demo application frontend should be available here
http://localhost:8080/
Going to Axon Server web dashboard overview
http://localhost:8024/#overview
you will see your current demo application instance succesfully connected to the server.
Quick Start Demo app can 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 editorReplace
<java.version>11</java.version>
occurrency with<java.version>1.8</java.version>
Find the
maven-compiler-plugin
plugin blockReplace
<release>${java.version}</release>
with<source>${java.version}</source> <target>${java.version}</target>
Run the demo application:
$ cd giftcard-demo && ./mvnw spring-boot:run
Last updated