/cashcards-rest-api

Spring academy course: Building a REST API with Spring Boot

Primary LanguageJavaMIT LicenseMIT

CashCard Rest API

Spring boot web application implementing simple CRUD rest API for managing cashcards.

Project from Building a REST API with Spring Boot spring academy course.

Endpoints

  • POST /cashcards/: Creates a new cashcard
  • GET /cashcards/: List all cashcards
  • GET /cashcards/{id}: Retrieves cashcard
  • PUT /cashcards/{id}: Updates cashcard
  • DELETE /cashcards/{id}: Deletes cashcard

Running the project

You can run the project by executing:

./gradlew bootRun

The application will be available on http://localhost:8080/

Running tests

To run tests, use:

./gradlew test

Technologies