java-tutorials/lightrun
Bipin kumar 5347b579ad
JAVA-32170_k_L: Changes made for Fix formatting of POMs K_L (#16115)
2024-03-17 12:50:52 +02:00
..
lightrun-api-service Java 27490 (#15217) 2023-12-05 10:43:20 +05:30
lightrun-tasks-service [JAVA-28926] Changes made to upgrade lightrun to Spring Boot 3 (#15880) 2024-02-19 08:43:39 +01:00
lightrun-users-service Java 27490 (#15217) 2023-12-05 10:43:20 +05:30
README.md Updated README.md 2022-09-11 10:13:56 +05:00
pom.xml JAVA-32170_k_L: Changes made for Fix formatting of POMs K_L (#16115) 2024-03-17 12:50:52 +02:00

README.md

Lightrun Example Application - Tasks Management

This application exists as an example for the Lightrun series of articles.

Building

This application requires Apache Maven and Java 17+.

Building the code is done by executing:

$ mvn install

from the top level.

Running

The application consists of three services:

  • Tasks
  • Users
  • API

These are all Spring Boot applications.

The Tasks and Users services exist as microservices for managing one facet of data. Each uses a database, and utilise a JMS queue between them as well. For convenience this infrastructure is all embedded in the applications.

This does mean that the startup order is important. The JMS queue exists within the Tasks service and is connected to from the Users service. As such, the Tasks service must be started before the others.

Each service can be started either by executing mvn spring-boot:run from within the appropriate directory. Alternatively, as Spring Boot applications, the build will produce an executable JAR file within the target directory that can be executed as, for example:

$ java -jar ./target/tasks-service-0.0.1-SNAPSHOT.jar

Relevant Articles"