This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
forked from itstamen/rop
-
Notifications
You must be signed in to change notification settings - Fork 4
rapid open platform
ofpay/rop
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
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. Good 2014! stame by 2012-3-1 Xiamen China
About
rapid open platform
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Java 97.5%
- JavaScript 1.4%
- HTML 1.1%