Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 901 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 901 Bytes

White Cloak Training - Java Persistence & Unit Testing

Sample project for demonstrating Java persistence and Unit Testing.

Postman collection can be found here.

Tech Stack

Component Technology Version
Main Compiler Java JDK 8 u171
Application Framework Spring Boot 2.1.6
Database H2 1.4.199

Packages

Classes are packaged by layers inside feature packages.

feature
  |-- controller
  |-- peristence
        |-- entity
        |-- repository
  |-- request
  |-- respponse
  |-- service
        |-- impl

The feature packages for this project are the following:

  • Post: Demonstrates the typical CRUD operations with simple entities.
  • Book: Demonstrates some common entity relationships.

Unit tests can be found in /src/test/java/com/whitecloak/training.