Hi Group,

I have one problem and I need help on that :

Problem description :

I am developing a microservice using spring boot and spring mvc.

I have configured an End point which implement all REST methods like GET , 
POST , PUT and DELETE as below :

@RequestMapping(method = RequestMethod.DELETE, produces = 
MediaType.APPLICATION_JSON_VALUE, consumes = 
MediaType.APPLICATION_JSON_VALUE)
public AbstractResponse delete(@RequestParam Map<String, Object> 
queryParameters,
HttpServletRequest servletRequest) throws PlatformException {
return getServiceHandler(servletRequest.getServletPath(), queryParameters, 
null, "DELETE", jwtTojken);
}
 
and the rest of the work will be done by the handler.

Now i want to use swagger to describe my API but swagger only able to 
identify the common end point and its methods.

Can any one help me to generate the swagger for all the handler that will 
be called from inside the above method.

Thanks
Gyan

-- 
You received this message because you are subscribed to the Google Groups 
"Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to