Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

zhuhh/rop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

106 Commits

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&param1=value1&param=value2...
 2)http://yourhost?method=rop.user.update&v=1.0&param1=value1&param=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 Spring Bean,In other word ,the handler is marked the @Service
or @Component and so on.
 This is a right handler rest service api method:
@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;
 }
}
 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.
 stame by 2012年3月1日 Xiamen China

About

rapid open platform

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

AltStyle によって変換されたページ (->オリジナル) /