Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itstamen/rop
rapid open platform
https://github.com/itstamen/rop
Last synced: 3 months ago
JSON representation
rapid open platform
- Host: GitHub
- URL: https://github.com/itstamen/rop
- Owner: itstamen
- Created: 2012-03-01T08:01:11.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-06-25T08:26:41.000Z (over 7 years ago)
- Last Synced: 2024-07-01T10:53:29.046Z (5 months ago)
- Language: Java
- Homepage: https://[email protected]/itstamen/rop.git
- Size: 19.1 MB
- Stars: 420
- Watchers: 115
- Forks: 345
- Open Issues: 25
-
Metadata Files:
- Readme: readme
Awesome Lists containing this project
README
Introduction
ROP is the Rapid Open Platform ,thus like the TOP(Taobao Open Platform:http://api.taobao.com).
The rest url of ROP is thus like the following :
1)http://yourhost?method=rop.user.add&v=1.0¶m1=value1¶m=value2...
2)http://yourhost?method=rop.user.update&v=1.0¶m1=value1¶m=value2...
ROP can router the request to the dest handler's api.You can use the
@ServiceMethod("rop.user.add") annotation to mark the api method in the handler.
Handler must be a add a @ServiceMethodBean annotation ,ServiceMethodBean has already
annotated a @Service(Spring),So the Service Class would be a Spring Service Bean automaticly.This is a right handler rest service api method:
import com.rop.annotation.ServiceMethod;
import com.rop.annotation.ServiceMethodBean;
@ServiceMethodBean//<--1. must mark the annotation,let it be a Service Bean
public class SampleRestService {@ServiceMethod("rop.sample.method1")//<--2.Let it be a Service Method.
public Object method1(SampleRopRequest1 request1) {
SampleRopResponse1 response = new SampleRopResponse1();
response.setCreateTime("20120101010101");
response.setUserId("1");
return response;
}
}
The parameter's list of the api method must extends the RopRequest,and the
Return parameter can be any Object.
The Rop can marshaller the response to the xml or json format output,you can
control the output format by "format" parameter.Author and participants
1)Stamen XiaMen http://stamen.iteye.com/
2)Wangxiancai GuangZhou http://wangxiancai.iteye.com/Good Luck! 2014!
stame by 2014-07-16 Xiamen China