Ganesh Satpute

Results 4 issues of Ganesh Satpute

I'm trying out stagemonitor with Spring Boot. I'm following [this article](https://github.com/stagemonitor/stagemonitor/wiki/Step-1%3A-In-Browser-Widget). * information about the environment Spring boot `2.0.3.RELEASE` Added stagemonitor dependency in `pom.xml` ``` .... org.stagemonitor stagemonitor-web-servlet 0.88.4 .......

I have created gateway proxy using Zuul. It redirects the traffic to Service1 and Service2 ``` public class SwaggerAggregatorController implements SwaggerResourcesProvider { @Override public List get() { List resources= new...

I'm trying to generate document for following function ``` "Some code ommitted" @swagger.operation( notes='some random note', responseClass=str, nickname='upload', parameters=[ ], responseMessages=[ { "code": 201, "message": "Created. The URL of the...

I want to add authorization header to all microservices. Which will be intercepted at Gateway Proxy level. I can do this using following piece of code without aggregation. ``` @Bean...