Go to file
Greg Gauthier 6b1ffa49c8
CMake / build (push) Successful in 1m37s Details
add gitea workflow
2024-02-23 23:12:57 +00:00
.gitea/workflows add gitea workflow 2024-02-23 23:12:57 +00:00
doc add proper readme doc for project 2024-02-23 22:58:37 +00:00
src add proper readme doc for project 2024-02-23 22:58:37 +00:00
.gitignore update gitignore 2024-02-23 23:01:45 +00:00
README.md add proper readme doc for project 2024-02-23 22:58:37 +00:00
pom.xml updgraded mockito to fix controller tests;disabled async stack tracing 2023-05-26 19:34:19 +01:00

README.md

calculator-project2

Intro

A sample springboot application, including both a service, and an api client.

Compile

mvn compiler:compile

Test

This will run the basic test set for both the service, and for the API client

mvn test

Run The Service

mvn spring-boot:run

Usage

Once the service is running, you can use the included CalculatorApp to demo the service and the API client, or you can use something like Insomnia to execute manual queries of the endpoints.

Command line execution:

java -classpath 
    \ {/path/to/your/target/classes:/path/to/your/.m2/repository/dependencies} 
    \ com.gmgauthier.CalculatorApp

It might be easier to execute it using an IDE like Eclipse or Intellij