我想为现有的一组 RESTful API 构建 Swagger 文档。我有以下要求:
- 离线生成 Swagger Doc(我使用了 http://kongchen.github.io/swagger-maven-plugin/)。这个插件帮助我在编译期间生成 Swagger 文档。
- 阅读现有的 Javadoc,以便在 Swagger 文档中使用它们。
到目前为止,使用上述插件,我能够实现第 1 点。因此,对于现有的 REST 方法:
/**
* <p>
* Gets the {@link DisplayPreferenceModel} with the name as provided in the parameter. The preference with the given name defined at the tenant or master level is returned.
* This API gives us the preference if it is eligible for unauthorized access If it is not eligible it throws an Exception saying Authorization required.
* </p>
* @param preferenceName
* - The name of the preference.
* @return {@link DisplayPreferenceModel}
*/
@RequestMapping(method = RequestMethod.GET, value = "/preferences/{preferenceName}")
@ApiOperation(value = "This API gives us the preference if it is eligible for unauthorized access If it is not eligible it throws an Exception saying Authorization required",
notes = "No Notes please", response = DisplayPreferenceModel.class)
@ApiResponses(value = {
@ApiResponse(code = 400, message = "Invalid preferenceName supplied"),
@ApiResponse(code = 404, message = "Display Preference Not Found")
}
)
public DisplayPreferenceModel getDisplayPreference( @PathVariable("preferenceName") final String preferenceName ) {
}
我能够生成 Swagger 文档。@ApiOperation 和 @ApiResponses 的使用使我的文档看起来很棒。
但是,我的问题是我是否可以使用 Javadocs 而不是让每个开发人员都创建 @ApiOperation 和 @ApiResponses 以便为我的团队节省时间?