What's the difference between REST & RESTful

后端 未结 15 1328
情深已故
情深已故 2020-12-11 15:13

What\'s the difference between a REST system and a system that is RESTful?

From a few things I\'ve read most so called REST services are actually RESTful services. S

15条回答
  •  没有蜡笔的小新
    2020-12-11 15:51

    thanks for the answers. Read this article by Alex Rodriguez which suggests that a RESTful web service has 4 basic characteristics which are:

    1. Use HTTP methods explicitly.
    2. Be stateless.
    3. Expose directory structure-like URIs.
    4. Transfer XML, JavaScript Object Notation (JSON), or both.

提交回复
热议问题