为Servlet添加支持REST式URL:ServletREST 经验

为Servlet添加支持REST式URL: 不改变习惯,仅仅在servlet内部完成doGet, doPost,doDelete,doPut等方法即可映射到较为复杂的REST URL eg: /book/

jopen 2012-10-15   31968   0
REST   Web框架  

Grape - 拥有REST风格API的Ruby框架 经验

Grape是一个拥有类似REST API的Ruby微型框架。它设计运行在Rack或补充现有Web应用框架如Rails或Sinatra,提供一种简单DSL来简化RESTful APIs开发。它已经内置支持一些常见约束,包括multiple

jopen 2012-12-22   82838   0

REST API 测试框架:Frisby.js 经验

Frisby.js 是一个 Node.js 和 Jasmine 上的 REST API 测试框架,让测试 API EndPoints更简单,更快捷,更有趣。 var frisby = require('

jopen 2014-01-08   35882   0

微软开源 C++ REST SDK 经验

微软近日开源了C++ REST SDK,托管在自己的 CodePlex 平台上。 项目地址: http://casablanca.codeplex.com C++ REST SDK 包含在 Casablanca

jopen 2013-02-28   34248   0

非常棒的Java REST服务器栈:Dropwizard 经验

Dropwizard 是一个开源的Java框架,用于开发OPS友好、高性能的基于REST的后端。它是由 Yammer 开发的,来驱动基于JVM的后端。 Dropwizard提供同类最佳的Jav

jopen 2014-08-22   31701   0

一个Go语言的REST API框架:Ripple 经验

Ripple是一个简单,而且灵活的Go语言 REST API 框架。以下是一个简单的用法: package main import ( "./ripple" "./controllers" "net/http" ) func main()

jopen 2013-06-07   46424   0

Yii2 REST客户端 经验

Yii2 REST客户端 Installation The preferred way to install this extension is through composer . Add

jopen 2015-09-07   13374   0
Yii2   Web框架  

REST 是微服务中最好的架构吗? 资讯

集中在REST作为微服务相互通讯的手段。正是因为如此,你可能会误认为REST风格的微服务时事实的标准,并努力使用这种方法设计和实施一个基于微服务的系统。事实并非如此。 REST 基于REST服务的

jopen 2016-01-14   14866   0

PostgREST: 把任意PostgreSQL数据库封装成REST API 经验

making requests to the live demo server with an HTTP client such as postman . The structure of the demo

jopen 2015-07-23   48898   0

服务端REST与SOAP的探讨 经验

本文从一个简单的应用场景出发,使用REST和SOAP两种不同的架构风格实现,通过对REST与SOAP Web服务具体对比,旨在帮助读者更深刻理解REST架构风格。 REST简介 在开始我们的正式讨论之前,让我们简单看一下REST的定义。

jopen 2016-01-19   20608   0

有关REST的一点学习笔记 经验

REST的意思是表征状态转移(Representational State Transfer),它是一种基于HTTP协议的网络应用接口风格,充分利用HTTP的方法实现统一风格接口的服务。其中包括了一下8种方法:

jopen 2012-09-11   15230   0
REST   Web框架  

自动生成Android,iOS的REST API访问代码 经验

如果API重构,这个改动,需要在其它几个地方replay 这几天,我写了一个程序,api-kit,通过自动生成代码的方式,解决这里面的大部分重复,使信息的流动更高效和快捷。 例子 假设API描述是这样的: // 这

jopen 2014-12-25   35343   0
P9

  常见的http错误 文档

 HTTP 1xx - 信息提示 这些状态代码表示临时的响应。客户端在收到常规响应之前,应准备接收一个或多个 1xx 响应。 ? 100 - 继续。 ? 101 - 切换协议。 2xx - 成功 这

molly8124 2013-01-29   2687   0
P

HTTP Developer's Handbook 文档

The largest group with an unsatisfied demand for a good book on HTTP is the worldwide group of Web developers. A good book on HTTP can help new and old Web developers alike, as a thorough understanding of underlying protocols can remove the dependencies on specific tool sets and help people create and maintain better Web applications as well as adapt to technologies. HTTP has become an essential topic because the Web's importance has created an army of people creatively leveraging the Web for their specific needs. By making standards information more available to the common developer, standards compliance becomes more widespread and common, something that the industry needs. Developers will buy this book because they want to advance their expertise, and because there is very little documentation available. This book will easily become the standard reference for the Internet's most dominant protocol.

qy2664257 2013-04-06   4548   0

HTTP Referer 二三事 资讯

什么是HTTP Referer 简言之,HTTP Referer是header的一部分,当浏览器向web服务器发送请求的时候,一般会带上Referer,告诉服务器我是从哪个页面链接过来的,服务器籍

jopen 2015-10-21   7982   0
HTTP  

go语言的http 经验

http服务 引子,http的hello world 如果要搜索“go http helloworld”的话,多半会搜索到以下代码 package main import ( "io" "net/http"

jopen 2013-08-09   69580   0

Android Http库:Netroid 经验

Volley 实现的Android Http库。提供执行网络请求、缓存返回结果、批量图片加载、大文件断点下载的常见Http交互功能。致力于避免每个项目重复开发基础Http功能,实现显著地缩短开发周期的愿景。

jopen 2014-06-15   40226   0

Async Http Client 经验

AsyncHttpClient 这个类库可以在Java应用程序中执行HTTP 请求并异步处理HTTP响应。用法非常简单。 项目主页: http://www.open-open.com/lib/view/home/1326030240937

webphp 2012-01-08   20911   0

基于HTTP的消息队列 经验

之前介绍过基于TCP的消息队列,这里在写个基于HTTP的消息队列。代码仅仅演示整个程序员的框架。不会去考虑性能和实用性。简单起见,我们只考虑固定URI的情况。当然,对于不同URI去存取不同的消息队列也是意见很简单的事情。

jopen 2014-01-27   27795   0

Swift HTTP 库:STNetWork 经验

sendGetHttp(sender: UIButton) { var url:String = "http://lcepy.github.io"; STNetwork.request(HTTPMETHOD

jopen 2015-06-17   21798   0
1 2 3 4 5 6 7 8 9 10