Skip to content

esanchezros/quickfixj-spring-boot-starter-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Maven Central Apache 2 QuickFIX/J 2.3.1

Spring Boot Starter Examples for QuickFIX/J (Spring Boot 2 and Spring Boot 3)

Main project

Build the project

mvn clean install

Simple Server Example

The simple server example can be run directly from the IDE or in the command line:

java -jar simple-server/target/simple-server.jar

Simple Server with Application Listener Example

The simple server example can be run directly from the IDE or in the command line:

java -jar simple-server-listener/target/simple-server-listener.jar

Simple Client Example

The simple client example can be run directly from the IDE or in the command line:

java -jar simple-client/target/simple-client.jar

Simple Client with Application Listener Example

The simple client example can be run directly from the IDE or in the command line:

java -jar simple-client-listener/target/simple-client-listener.jar

Docker Examples

To build the docker containers:

mvn clean install -DskipDocker=false

Client-Server

Go to docker-server-client/src/main/docker and run:

docker-compose -f docker-compose.yml up -d

Client-Server with Failover

Go to docker-server-client-with-failover/src/main/docker and run:

docker-compose -f docker-compose-failover.yml up -d

If you want to see the failover in action, kill the first server container and see the client reconnecting to the second server after around a minute or so:

docker rm -f quickfixj-spring-boot-server