Spring Applications
Project: Google Books Client
The objective of this exercise is to use
Google's Books API to search for books in the catalog service.
- Implement a component
GoogleBooksClient
that invokes Google's volume list method (see API Reference) with appropriate query parameters (see API Guide).
- Use the VolumeBookMapper component with the associated DTO classes to convert the returned
Volume
objects to Book
objects.
- In the catalog service update the
findBook
and searchBooks
methods such that they use Google's Book API to search for books.