开放平台设计思路 Rop
- 授权协议: GPL
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/itstamen/rop
- 软件文档: https://github.com/itstamen/rop/blob/master/rop/document
软件介绍
Rop,即Rapid Open Platform,是一个参考淘宝开放平台(TOP Taobao Open Platform)的平台设计思路,充分借鉴Spring MVC的技术架构原理开发的一个快速服务开放平台开源框架项目,可以让您迅速构建成熟的SOA服务平台。它不同于传统的SOAP Web Service和Rest Web Service这些Web Service 技术型框架,Rop是一个应用型的Web Service平台框架,它不但可以方便快捷地开发一个个Web Service服务,还提供了服务平台领域问题的整体解决方案。
传统的Web Service框架帮助你建造房子,而Rop框架帮助您建造城市。
示例代码:
@Service
public class SampleRestService {
@ServiceMethod("rop.sample.method1")
public Object method1(SampleRopRequest1 request1) {
SampleRopResponse1 response = new SampleRopResponse1();
response.setCreateTime("20120101010101");
response.setUserId("1");
return response;
}
}
Developer's Guide to Social Programming
Mark D. Hawker / Addison-Wesley Professional / 2010-8-25 / USD 39.99
In The Developer's Guide to Social Programming, Mark Hawker shows developers how to build applications that integrate with the major social networking sites. Unlike competitive books that focus on a s......一起来看看 《Developer's Guide to Social Programming》 这本书的介绍吧!
