有什么方法可以在Eclipse中隐藏/折叠招摇注解?

时间:2019-02-21 07:19:39

标签: java eclipse swagger

我的控制器具有一些带有大量描述的摇摇欲坠的注释。这会使文件混乱并且难以跟踪代码。

示例代码块 Swagger annotations used in the file

是否有任何方法可以在日食中隐藏或折叠招摇或其他注释。

1 个答案:

答案 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,

参考:Externalization