In this assignment you create a RESTful Web Service that provides the standard CRUD operations on an entity called Book.
Using REST technology / IDE is open. You are allowed to use any platform of your choice.
Using an IDE of your choice, create a Java project and configure it to be a REST web service provider.
Add an entity class (Bean), namely Book, that encapsulates the following attributes:
• Id as int
• Title as string
• Date as date
Declare all four HTTP verbs and implement the CRUD operations, including list.