Spring boot web application implementing simple CRUD rest API for managing cashcards.
Project from Building a REST API with Spring Boot spring academy course.
- 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
You can run the project by executing:
./gradlew bootRun
The application will be available on http://localhost:8080/
To run tests, use:
./gradlew test