问题描述
我有以下Swagger:
Java
@POST
@Path("login")
@ApiOperation(value="Login a user with a username and password and return a jwt")
@ApiResponses({
@ApiResponse(code=200,message="Success"),@ApiResponse(code=404,message="Not Found")
})
@Consumes({ MediaType.APPLICATION_JSON })
@Produces({ MediaType.APPLICATION_JSON })
public Response login(@ApiParam(required = true) UserLoginDTO userLogin,@Context HttpServletRequest request) {
问题
如何为正文添加默认值,即recaptcha
上的UserLoginDTO
成员变量?
例如:
我想在Swagger用户界面的某处添加 reCAPTCHA 网站密钥,以便使用Swagger的UI开发人员可以获取该信息。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)