Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 867 Bytes

File metadata and controls

39 lines (28 loc) · 867 Bytes

Quick Start

Run Any Module

cd modules/<module-name>
./mvnw spring-boot:run

Module Ports

Module Port URL
01-spring-hello-rest 8080 http://localhost:8080/greeting
02-spring-scheduling-tasks N/A Console output only
03-quote-service 8080 http://localhost:8080/api/random
03-spring-consuming-rest 8081 http://localhost:8081/quote
04-spring-relational-data-access N/A Console output only

Note: Modules 03-quote-service and 03-spring-consuming-rest work together (provider/consumer). See 03-spring-consuming-rest README for integration instructions.

Run All Tests

From the repo root:

./mvnw test

Run Checkstyle

./mvnw checkstyle:check

Build All Modules

./mvnw clean verify