Spring Web Services

Exercise: Catalog REST Interface

Implement a REST interface of the catalog service that enables the following requests:

POST /books − Add a book to the catalog
GET /books/{isbn} − Find a book by its ISBN number
GET /books?keywords={keywords} − Search for books by keywords
PUT /books/{isbn} − Update a book

API Documentation