codecamp

REST 前言

REST in Action 《REST 实战》

REST in Action base on Jersey.Learning REST step by step with a large number of samples and finally build a complete RESTful application.There is also a GitBook version of the book: http://waylau.gitbooks.io/rest-in-action. Let's READ!

基于 Jersey 的 REST 实战。在做 Java RESTful 相关的项目,发现网上中文的资料比较少(https://github.com/waylau/RestDemo 这个是我以前写的博客,可以作为参考),而且 Jersey 的更新比较快,利用业余时间写了本书,图文并茂,用大量实例带你一步一步走进 REST 的世界,最终构建一个完整的 REST 应用。如有疏漏欢迎指正。感谢您的参与!

有关 Jersey 详细信息,可以参阅《Jersey 2.x 用户指南》。

Get start 如何开始阅读

选择下面入口之一:

Code 源码

书中所有示例源码,移步至https://github.com/waylau/rest-in-action的 samples 目录下,代码遵循《Java 编码规范

Issue 意见、建议

如有勘误、意见或建议欢迎拍砖 https://github.com/waylau/rest-in-action/issues

Contact 联系作者:


REST 总览
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }