Contains server and client modules.
mvn package
Account service with Balance and Statistic functionality
mvn test -pl account-service
mvn package -pl account-service
mvn spring-boot:run -Dspring-boot.run.profiles=local -pl account-service
Load test tool for account-service
mvn package -pl account-client
With parameters in command line:
java -jar account-client-1.0-SNAPSHOT-jar-with-dependencies.jar rCount=1 wCount=1 idList=1,2,3
With parameters in config file:
java -jar account-client-1.0-SNAPSHOT-jar-with-dependencies.jar configFile=C:\tmp\app.properties
Command line arguments take precedence and can be used in conjunction
with configFile
argument to override properties from file.