REST基础

REST(Representational State Transfer表述性状态转移)是分布式网络系统的一种设计模式, 源自Roy T. Fielding in his PhD thesis in 2000.

Resource – Oriented: Drivers of the resource design are networking aspects and not the object model.

Key REST Principles
•Give every “thing” an ID
•Link things together(URI)
•Use standard methods(Get, Post, Put, Delete)
•Resources with multiple representations(xml, json)
•Communicate statelessly
 
原文地址:https://www.cnblogs.com/jenneyblog/p/RestBasic.html