REST API with Spring guide

Simple guide to help you on your web-dev journey

View the Project on GitHub KeaCluster/bookstoreAPI-spring-guide

Part 7 Tests

Tests

Postman

Try using postman to add, get, delete and update one or more of our entities through requests.

Books

{
  "name": "Frankenstein",
  "author": "Mary W Shelly",
  "stock": 3,
  "price": 29.99
}
{
  "title": "Updated Book Title",
  "author": "Updated Author Name",
  "stock": 15,
  "price": 25.99
}