- 浏览: 81568 次
- 性别:
- 来自: 信阳
文章分类
- 全部博客 (47)
- 数据库 (2)
- web应用 (14)
- 杂 (3)
- java基础 (3)
- Lucene (6)
- junit (2)
- spring (0)
- solr (4)
- JMS (0)
- 持久层 (0)
- 模板解决方案 (4)
- 项目发布管理 (0)
- GIS (0)
- 运维知识 (1)
- 设计模式 (2)
- 线程 (2)
- java.util (0)
- Linux (0)
- JVM (0)
- HTML5 (1)
- 敏捷开发 (0)
- 压力测试 (1)
- 字节码操控框架 (0)
- Classworking (1)
- EJB (1)
- REST (7)
- Restlets (4)
- Groovy (1)
- Selenium (1)
- test (3)
- Jersey一 (0)
- 架构分析 (0)
- 研发管理 (1)
- JAAS (0)
- JSCoverage (1)
- EclEmma (1)
- 计划 (0)
- jQuery (0)
- javascript MVC (0)
最新评论
-
悬空90:
兄弟人才啊 。英文不好找了老半天
web容器一、jetty的学习(下载源码) -
liushicheng1:
我也找了半天 被你发现了 人才。
web容器一、jetty的学习(下载源码) -
gandilong:
不过,我想通过ant+freemarker+xml生成jav ...
java代码自动生成一(freemarker) -
xinyangwjb:
solr官网例子默认编码是UTF-8,你的项目是不是UTF-8 ...
solr学习三(测试类,含普通与ExtractingRequestHandler测试) -
wjx:
up.setParam设置的内容如果有中文的话会乱码,不知lz ...
solr学习三(测试类,含普通与ExtractingRequestHandler测试)
英文tutorial guide
http://www.ibm.com/developerworks/java/tutorials/j-rest/
也是以下翻译的原文链接
RESTfull==REpresentation State Transfer没有好的中文翻译。
RESTfull是一组架构约束条件和原则。满足这些约束条件和原则的应用程序或设计就是 RESTful。
首先先得明白有状态和无状态。RPC框架中视图层是有状态的。
Web 应用程序最重要的 REST 原则是,客户端和服务器之间的交互在请求之间是无状态的。无状态意味着可随意分布式
REST 是一种依靠命名资源的低耦合web应用设计风格——in the form of Uniform Resource Locators(URLs),Uniform Resource Identifiers(URIs),and Uniform Resource Names,for instance——rather than messages.
以统一资源定位,统一资源标示,统一资源命名的形式实现,而不是动态的信息
REST leverages aspects of the HTTP protocol such as GET and POST request.
REST利用对HTTP协议如GET何Post请求的aspect
RESTfull真正veritable father在他的dissertation中说的:"
emphasizes scalability of component interactions, generality of interfaces,independent deployment of components,and intermediary components to reduce interaction latency,enforce security,and encapsulate legacy systems"
着重于组件交互的可扩展性,通用接口,独立部署组件和利用中间组件去减少交互延迟,强制安全性和封装遗留系统。
Everything on the Web(pages,images,and so on)is in essence a resource.REST's reliance on named resources rather than messages facilitates loose coupling in application design,because it limits the exposure of the underlying technology.For instance,the folowing URL exposes a resource without implying anything about the underlying technology:http://thediscoblog.com/2008/03/20/unambiguously-analyzing-metrics/
web(pages,images,and so on)本质上就是资源。REST 依赖命名的资源而不是报文,从而降低应用设计的耦合度。因为他限制底层技术的暴露。
this URL represents a resource —— an article called "Unambiguously analyzing metrics".A request for this resource leverages the HTTP GET command.Notice that
the URL is noun-based. A verb-based version(which might look something like http://thediscoblog.com/2008/03/20/getArticle?name=unambiguously-analyzing-metrics)would violate REST principles,because it embeds a message.in the form of getArticle.You could also imagine posting a new resouce(say, an article resource such as http://thediscoblog.com/2008/03/22/rest-is-good-for-you/)via HTTP's POST command.Although you can also imagine associated,verb-based APIs——such as createArticle?name=rest-is-good-for-you and deleteArticle?name=rest-is-good-for-you — such calls hijack the HTTP GET command and,for the most part,ignore the already available(and successful)HTTP infrastructure.In other words,they are not RESTful.
URL代表了一个资源,一篇名叫"Unambiguously analyzing metrics"的文章。注意这个请求是基于名词的,如果是基于动词的(如http://thediscoblog.com/2008/03/20/getArticle?name=unambiguously-analyzing-metrics),则会侵犯REST原则。因为他嵌入了一个报文,你可以根据这个动词联想其他文章,甚至其他的请求,如createArticle、deleteArticle。这样的请求劫持了get命令,更重要的是忽略了已经有效的HTTP基础。
The beauty of REST is that resources can be anything,and how they are represented can vary too.In the preceding example,the resource is an HTML file;accordingly,the format of the response would be HTML.But the resource could have easily been an XML document,serialized object,or JSON representation.It really doesn't matter.What matters is that a resource is named and that communication with it doesn't affect its state.Not affecting state is important because stateless interactions facilitate scalability.
REST的好处是资源可以使任何事物,并且如何表现也可以是多样化的。之前的例子,资源是HTML文件,因此response的格式可能是HTML,但是资源可以轻易地改为XML,序列化对象,或者JSON表现形式。这不是问题,问题是资源如何命名及访问它却不影响他的状态。
To quote LEonardo da Vinci,"simplicity is the ultimate sophistication"
引用那谁的话说:“简单才是最终极的复杂”
http://www.ibm.com/developerworks/java/tutorials/j-rest/
也是以下翻译的原文链接
RESTfull==REpresentation State Transfer没有好的中文翻译。
RESTfull是一组架构约束条件和原则。满足这些约束条件和原则的应用程序或设计就是 RESTful。
首先先得明白有状态和无状态。RPC框架中视图层是有状态的。
Web 应用程序最重要的 REST 原则是,客户端和服务器之间的交互在请求之间是无状态的。无状态意味着可随意分布式
REST 是一种依靠命名资源的低耦合web应用设计风格——in the form of Uniform Resource Locators(URLs),Uniform Resource Identifiers(URIs),and Uniform Resource Names,for instance——rather than messages.
以统一资源定位,统一资源标示,统一资源命名的形式实现,而不是动态的信息
REST leverages aspects of the HTTP protocol such as GET and POST request.
REST利用对HTTP协议如GET何Post请求的aspect
RESTfull真正veritable father在他的dissertation中说的:"
emphasizes scalability of component interactions, generality of interfaces,independent deployment of components,and intermediary components to reduce interaction latency,enforce security,and encapsulate legacy systems"
着重于组件交互的可扩展性,通用接口,独立部署组件和利用中间组件去减少交互延迟,强制安全性和封装遗留系统。
Everything on the Web(pages,images,and so on)is in essence a resource.REST's reliance on named resources rather than messages facilitates loose coupling in application design,because it limits the exposure of the underlying technology.For instance,the folowing URL exposes a resource without implying anything about the underlying technology:http://thediscoblog.com/2008/03/20/unambiguously-analyzing-metrics/
web(pages,images,and so on)本质上就是资源。REST 依赖命名的资源而不是报文,从而降低应用设计的耦合度。因为他限制底层技术的暴露。
this URL represents a resource —— an article called "Unambiguously analyzing metrics".A request for this resource leverages the HTTP GET command.Notice that
the URL is noun-based. A verb-based version(which might look something like http://thediscoblog.com/2008/03/20/getArticle?name=unambiguously-analyzing-metrics)would violate REST principles,because it embeds a message.in the form of getArticle.You could also imagine posting a new resouce(say, an article resource such as http://thediscoblog.com/2008/03/22/rest-is-good-for-you/)via HTTP's POST command.Although you can also imagine associated,verb-based APIs——such as createArticle?name=rest-is-good-for-you and deleteArticle?name=rest-is-good-for-you — such calls hijack the HTTP GET command and,for the most part,ignore the already available(and successful)HTTP infrastructure.In other words,they are not RESTful.
URL代表了一个资源,一篇名叫"Unambiguously analyzing metrics"的文章。注意这个请求是基于名词的,如果是基于动词的(如http://thediscoblog.com/2008/03/20/getArticle?name=unambiguously-analyzing-metrics),则会侵犯REST原则。因为他嵌入了一个报文,你可以根据这个动词联想其他文章,甚至其他的请求,如createArticle、deleteArticle。这样的请求劫持了get命令,更重要的是忽略了已经有效的HTTP基础。
The beauty of REST is that resources can be anything,and how they are represented can vary too.In the preceding example,the resource is an HTML file;accordingly,the format of the response would be HTML.But the resource could have easily been an XML document,serialized object,or JSON representation.It really doesn't matter.What matters is that a resource is named and that communication with it doesn't affect its state.Not affecting state is important because stateless interactions facilitate scalability.
REST的好处是资源可以使任何事物,并且如何表现也可以是多样化的。之前的例子,资源是HTML文件,因此response的格式可能是HTML,但是资源可以轻易地改为XML,序列化对象,或者JSON表现形式。这不是问题,问题是资源如何命名及访问它却不影响他的状态。
To quote LEonardo da Vinci,"simplicity is the ultimate sophistication"
引用那谁的话说:“简单才是最终极的复杂”
发表评论
-
javascript异步事件分析
2013-05-22 14:25 0console.log( "a" ); ... -
javascript作用域链的灵活运用1
2013-05-21 19:58 819javascript比较出彩的运用之一:作用域链。 1、对于有 ... -
2012-2013总结之javascript
2013-05-02 14:54 0javascript能力的来源与基石是一本书:javascri ... -
Js闭包理解、运用
2012-11-08 14:12 888onClick: (function (){ ... -
URL转义及编码
2012-08-31 11:01 822js对文字进行编码涉及3个函数:escape,encodeUR ... -
JS的架构
2012-06-25 09:35 0js代码页也需要架构,他能使你的代码更加漂亮,益于维护,便于代 ... -
各种浏览器语言包、国际化如何配置
2012-04-18 15:36 2957如果web项目使用了国际化多语言包,切换浏览器语言包可以切换 ... -
RESTful初探之六(testing)
2012-04-12 17:04 992Building and testing the servic ... -
RESTful初探之五(The data layer)
2012-04-12 14:34 949原文:http://www.ibm.com/developer ... -
RESTful初探之五(Generating XML documents)
2012-04-12 13:57 910In the Formatting the resource, ... -
RESTful初探之四(Restlets)
2012-04-11 18:14 1281Restlets Restlet项目为“建立REST概念与Ja ... -
RESTful初探之三(Formating the resource)
2012-04-11 16:52 870Race URIs The RESTful API you b ... -
RESTful初探之二(Off to the races:Building a RESTful API)
2012-04-11 15:58 822Imagine an online application t ... -
关于java Web Project引包的问题
2012-02-14 17:03 1570这里要说的是Web Project如何合理引入jar包的问题。 ... -
web容器二、jetty的学习(主要接口)
2012-01-15 22:49 1064学习资料: 官方Wiki:http://docs.codeh ... -
web容器一、jetty的学习(下载源码)
2012-01-15 00:26 2389由于jetty是由java编写的web容器,因此,对web容器 ... -
servlet容器监听器与拦截器
2012-01-11 18:05 0二者都是在web.xml中加载,分别为: <listen ... -
http传参get与post的误区与总结
2012-01-11 10:18 2916众所周知的http请求有两种: get与post: 这两种请求 ... -
如何在struts2拦截器中获得request
2011-12-22 15:23 2020由struts2原理图可知道,interceptor发生在ac ...
相关推荐
REST它是一种使用URL来定位资源,使用HTTP请求描述操作的Web服务规范,本资源包含RESTful简介、设计原则、通用说明、规范细则、接口管理说明。
Restlet是Java领域的一款开源框架,专门用于构建REST(Representational State Transfer)风格的Web服务。RESTful是一种软件架构风格,设计模式,是基于HTTP协议的Web服务设计原则,强调资源的概念,通过URI来定位...
总之,NC65的RESTful接口为开发者提供了一种高效、标准的方式来访问和操作系统资源,"patch_NC65restful接口_20180629_dingyh5.zip"则是一个具体的实例,展示了如何管理和更新这些接口。掌握RESTful接口的使用,将有...
1. **RESTful原则**:REST(Representational State Transfer)的核心思想是资源(Resource)和状态转移。通过HTTP方法(GET、POST、PUT、DELETE等)来操作资源,实现无状态、缓存、层叠等特性。 2. **C#与ASP.NET ...
REST(Representational State Transfer)是一种软件架构风格,常用于构建现代Web服务,强调简洁、无状态和基于标准的接口设计。 首先,让我们了解REST的基本原则。RESTful API通常基于HTTP协议,通过GET、POST、...
REST(Representational State Transfer)是一种网络应用程序的设计风格和开发方式,基于约束条件和架构原则的运用。REST 架构风格的核心概念是“资源”(Resource),并通过 URL 来定位这些资源。RESTful API 使用 ...
总之,《REST开发者RESTful资源指南》是一份非常有价值的参考资料,无论是对于REST新手还是经验丰富的开发者来说,都能够从中获得宝贵的见解和实用的技巧。通过深入理解REST的核心理念和技术细节,开发者可以更加...
维基百科把表述性状态转移(Representational State Transfer ,REST)定义为“分布式超媒体系统、如万维网的一种软件架构形式”。Web朋务的RESTful方案被广泛规为SOAP的一个更简单的替代方案。许多大型的Web朋务...
Django REST Framework提供了一系列工具和库,简化了开发RESTful API的过程。它包括序列化、认证、权限管理、分页、过滤等关键功能,并且支持自定义,以满足各种项目需求。DRF的API友好,文档详尽,社区活跃,是开发...
在构建现代Web应用程序时,REST(Representational State Transfer,表述性状态转移)风格已经成为一种广泛采用的架构设计原则。RESTful API设计不仅简洁且易于理解,还提供了良好的可伸缩性和可维护性。本篇文章将...
#### 一、RESTful Web服务概览 REST(Representational State Transfer)是一种软件架构风格,最初由Roy Fielding在他的博士论文中提出。它定义了一种简单且灵活的方法来创建分布式系统,如Web服务。在《RESTful ...
Angular-RESTfulService, Angular 调用rest式服务的示例 Angular rest式服务示例这个项目简单地介绍了如何使用 Angular 来调用rest式服务。 只需克隆项目或者下载并提取. zip 即可开始。 Angular 概念使用app类和...
在本项目中,我们主要探讨RESTful API设计原则、Java的REST服务实现以及与之相关的项目结构。 【bpsweb】可能代表Web应用的前端部分,或者是一个与业务处理相关的模块。在RESTful架构中,前端通常负责用户界面交互...
而REST(Representational State Transfer,表述性状态转移)是一种网络应用程序的设计风格和开发方式,基于HTTP协议,通过URL定位资源,使用HTTP方法(GET、POST、PUT、DELETE等)对资源进行操作。 要使用C或C++...
标题中的“一个快速实现SQL转Restful微服务接口的工具”揭示了我们今天要讨论的核心技术:将SQL查询转换为RESTful API接口。REST(Representational State Transfer)是一种网络应用程序的设计风格和开发方式,基于...
例如,文件名`lj比起用问号方式传递参数,REST方式最方便之处在于--生成静态页面并缓存起来.txt`就提到了这一点。 SOA(Service-Oriented Architecture)是一种面向服务的架构风格,它将业务逻辑组织为一组可重用的...
REST(Representational State Transfer)是一种软件架构风格,用于设计网络应用程序,尤其适用于Web服务。其核心思想是通过HTTP方法(如GET、POST、PUT、DELETE等)操作资源,这些资源由URI(统一资源标识符)唯一...
... 当前最新版本 cas-server-3.4.2 , ...n 下载 restlet 相关 http://www.restlet.org/downloads/ , 解压后将下面 jar 拷贝到 D:\server\apache-tomcat-6.0.18\webapps\cas\WEB-INF\lib: ( 它奶奶地这一步骤很折腾 ) ...