saravana2906 / contact-springboot-rest

Spring Boot - Rest Repository Resource - Contact Management API - developed to learn to expose apis directly from entities at ease using spring boot rest.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

springboot-contact-rest

Spring boot Contact Management API developed using spring boot concepts like Spring Rest Repository , HAL Browser.

This project same as previous learning project - Spring Boot Contact - https://github.com/saravana2906/spring-boot-Contact

Learnings from this are follows -

  • By annotating Repository interfaces with @RepositoryRestResource - Entities are exposed as rest services at ease and
    it follows Open API specifications (Best Prcatices) like returning response status 201 - created , 404 -Not found etc.
  • Annotations exposes resources by adding "s" to Entities(Noun) - Contact(Entity) - contacts(resources). contacts/1 - gives contact information for contactId -1.
  • By adding HAL Browser dependencies - It exposes UI to easily check the resources and URI like swagger UI .
  • The one main enlightening is , I thought Hateoas , is High level standard to include navigation and documentation for Rest services , so that self link , next link while pagination to reach resources but its not only that it also represents entity mapping object as link instead of actual resource.
    As we can see it treats resource reference as actual link points to the resource.
    Sample request to create new contact for User with user id - 1
{
  "name": "dharani",
  "emailId": "Dharani@gmail.com",
  "user": " http://localhost:7000/users/1"
}

ScreenShot

Open questions

  • Felt like too much links , while using HAL browser i lost myself , how to navigate and each time I loaded HAL browser home url manually as i don't know how to go back to all resources. Need to know am i doing properly ? and sometimes Hypermedia is too much for this simple project , eventhough it eases rest creation.
  • Handling of entire contact creation with phone number as single rest call - Scenario is i'm creating full contact - from UI ,assume user will input all details including contact and contact phone entities.At this time i struggled like Rest forces me to split this scenario into two steps
    - First Create a contact with post
    - Then create phone number for contact so that , i have reference url to link phone number with contact created in last step.
    Is there any way to do it in a single steps ? or this is need for going manual restcontroller as we need service layer to group this unit of work - contact creation.

About

Spring Boot - Rest Repository Resource - Contact Management API - developed to learn to expose apis directly from entities at ease using spring boot rest.


Languages

Language:Java 100.0%