- Level 0 - Swamp of Pox
- basically HTTP as a tunneling mechanism for RPI
- Level 1 - Resources
- have more than one endpoint.. start talking to individual resources
- allows you to break one monolithic endpoint down into multiple resources
- Level 2 - HTTP Verbs
- using more than just POST for everything
- allows you to use *standard* verbs
- Level 3 - Hypermedia Controls (HATEOAS)
- start including LINKS to self and other resources
- allows discover-ability and promotes self-documentation and allows you to build services that decouple client and server to a large extent and allow them to evolve independently
More about HATEOS theory -
- https://spring.io/understanding/HATEOAS,
- https://en.wikipedia.org/wiki/HATEOAS
- A hypermedia-driven site provides information to navigate the site's REST interfaces dynamically by including hypermedia links with the responses.
More about developing HATEOS with Spring -
- http://projects.spring.io/spring-hateoas/
- Spring HATEOAS, a library of APIs that you can use to easily create links pointing to Spring MVC controllers, build up resource representations, and control how they’re rendered into supported hypermedia formats such as HAL
- Support for hypermedia formats like HAL - more about HAL: https://en.wikipedia.org/wiki/Hypertext_Application_Language