Project has standard REST API:
- GET
/get all books. - GET
/{id}get book with id. - POST
/create new book. - PUT
/{id}update book. - DELETE
/{id}delete book. - DELETE
/delete all books.
/v1/booksStandard Spring Annotated Controller./v2/booksFunctional Endpoints with RouterFunction and Handler.