这是indexloc提供的服务,不要输入任何密码
Skip to content

masudjbd/apiary-jax-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

apiary-blueprint-generator

APIARY Blueprint generator from JAX RS

To user this you will have to define you'r api endpoint jax rs with Swaggar annotation as follows:

Complete Annotation example -

@ApiOperation(name = "api name", ...)
@ApiImplicitparams({
        @ApiImplicitParam(name="request", value="JSON Object")
        @ApiImplicitParam(name="response", value="JSON Object")
    })
@PUT
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Response updateObject(@PathParam("id") Long objectId, @QueryParam("qid") Long objectQId) {
    ...
}

About

Apairy Blueprint Generator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages