dropwizard-swagger icon indicating copy to clipboard operation
dropwizard-swagger copied to clipboard

a Dropwizard bundle that serves Swagger UI static content and loads Swagger endpoints.

Results 50 dropwizard-swagger issues
Sort by recently updated
recently updated
newest added

Fixes #59. Permits scanning for resources within the Dropwizard environment when resource package property is null or empty

It would be immensely useful to have dropwizard-swagger permit scanning of the Dropwizard environment for resources, rather than an entire package. My primary use case is that I have a...

https://github.com/swagger-api/swagger-core/issues/1127 Yes 1.5.0 is newer than 1.5.3-M1.. Migrate from ``` com.wordnik swagger-jersey2-jaxrs 1.5.3-M1 ``` to io.swagger swagger-jersey2-jaxrs 1.5.0

As Swagger 2.0 spec has been recently released, it would be ideal to update the project so that it supports it. The problem is not in the Java side but...

I can see there are a few ways of setting the hostname/port, one involves hardcoding into java, the other relates to a hosted provider. Wondering if there is a way...

Hi! I want to set additional information to my swagger config (Tag descriptions for example) like this example: ``` java Info info = new Info() .title("Swagger Sample App") .description("This is...

The Readme states that 1.3.12 is used for v0.5.3.... but examining the POM, I see: 1.3.2 This older version does not have the @Inherited annotation, which causes issues where child...

In my swagger.json I can see the basePath set to "basePath":"/my-application", which is relative. How can I make it absolute and have something like "basePath":"http://localhost:9999/my-application". beacuse I am not able...

Hi I don't want users to send stuff to the API. How do I go about turning it off? I understand that it can be done by removing HTTP verbs...

I am trying out a basic HelloWorld Dropwizard app, using Dropwizard 0.7.1. The UI keeps throwing a javascript error: ![swagger_ui](https://cloud.githubusercontent.com/assets/22395/4082048/bcb1dd7a-2eed-11e4-9d64-059a4470650d.png) Here is what the raw API output for my HelloWorld...