我的控制器具有一些带有大量描述的摇摇欲坠的注释。这会使文件混乱并且难以跟踪代码。
示例代码块 Swagger annotations used in the file
是否有任何方法可以在日食中隐藏或折叠招摇或其他注释。
答案 0 :(得分:0)
您可以将字符串外部化为Constants或properties或yaml以获取干净的代码
@ApiParam(value = "${swagger.sample.request.ApiParam.value}")
@RequestBody(required = true)
List request,
@ApiParam(value = DocumentationConstants.SAMPLE, required = true)
@RequestHeader(value = "sample", required = true)
String example,