Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. REST - architectural approach for designing web services.
  2. Independent of underlying protocol, but usually use HTTP as application protocol
  3. It has:
  4. - a URI (resource)
  5. - uses a uniform interface for decoupling client and service
  6. For example when built on top of http, the same uri can be used with standard http operations like get/post/put..
  7.  
  8. Stateless request model. Request should be independent from each other.
  9. Also, each request should be an atomic operation.
  10. (This enable web services to be scalable, because client and server do not need to retain information. Client request can go to any servers)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement