/light-tram-4j

Transactional Messaging framework for message/event/command driven interaction style

Primary LanguageJavaApache License 2.0Apache-2.0

Transactional Messaging framework for message/event/command driven interaction style

Developer Chat | Documentation | Contribution Guide |

Build

To build the project without running integration test cases.

mvn clean package

If you have to install the jars into your local maven repository .m2, then you can

mvn clean install -DskipTests

Test

Before running integration test cases during the build. We need to start Kafka, Zookeeper Mysql and CDC server.

First find out your computer IP address by issue ifconfig and find the IP address starts with 192.XXX.XXX.XXX or 10.XXX.XXX.XXX

On my desktop it is 192.168.1.120 and you might have a different IP address. Once you found it, please run the following command with your IP to set DOCKER_HOST_IP.

export DOCKER_HOST_IP=192.168.1.120

On the same terminal, let's start Kafka, Zookeeper and Mysql

cd ~
mkdir networknt
cd networknt
git clone https://github.com/networknt/light-docker.git
cd light-docker
docker-compose -f docker-compose-eventuate.yml up

Above docker-compose will start Kafka, Zookeeper and Mysql. Wait for all three services are up and running, then start Tram CDC server.

cd ~/networknt/light-docker
docker-compose -f docker-compose-cdcserver-for-tram.yml up

Now you can run all the integration tests.

cd ~/networknt/light-tram-4j
mvn clean install