0

我尝试使用 @Api 和 @ApiModel 重命名我的 api 引用,但似乎没有任何效果。它总是采用类名。我正在使用 swagger2 + springfox 2.4 + springboot。

4

1 回答 1

1

实际上,我可以使用 @Api 中的 tags 属性重命名我的 Api

@Api(tags='NiceName')
public class myapi {...}
于 2016-05-09T05:52:34.177 回答