You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However when I look at localhost:8080/swagger, I see:
which oddly displays the description of the last
@ApiOperation(
value = "Get next business day",
notes = "Returns the next business day fom the supplied date expressed as YYYY-mm-dd.",
response = HolidayResponse.class
)
method in my class..
Is this a bug or am I missing some configuration?
Thanks, Jason
The text was updated successfully, but these errors were encountered:
I had the same problem, but I found it is fixed in this fork: https://github.com/smoketurner/dropwizard-swagger. It doesn't actually show the description, but at least it doesn't show the wrong value.
Hi,
In my resource class, I have:
However when I look at localhost:8080/swagger, I see:
which oddly displays the description of the last
@ApiOperation(
value = "Get next business day",
notes = "Returns the next business day fom the supplied date expressed as YYYY-mm-dd.",
response = HolidayResponse.class
)
method in my class..
Is this a bug or am I missing some configuration?
Thanks, Jason
The text was updated successfully, but these errors were encountered: