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
Is there a reason the httpMethod for an @ApiOperation can't be automatically determined from the play2 routes table? It already gets the URL from the routes table.
Ideally it would also automatically extract the path param name for @ApiParam and wouldn't require an extra @PathParam annotation.
public static Result test(
@ApiParam(value = "The ID", required = true, defaultValue= "1") @PathParam("id") String id)
)
The text was updated successfully, but these errors were encountered:
Is there a reason the httpMethod for an @ApiOperation can't be automatically determined from the play2 routes table? It already gets the URL from the routes table.
Ideally it would also automatically extract the path param name for @ApiParam and wouldn't require an extra @PathParam annotation.
public static Result test(
@ApiParam(value = "The ID", required = true, defaultValue= "1") @PathParam("id") String id)
)
The text was updated successfully, but these errors were encountered: