@ApiOperation注解,@FeignClient
2021-04-08 21:27
标签:其他 名称 ota res 接口 容器 开启 调用 注解 @ApiOperation不是spring自带的注解,是swagger里的 @ApiOperation和@ApiParam为API生成做的注解,个参数说明如下: 详细请参与如下: https://blog.csdn.net/fansunion/article/details/51923720 @FeignClient 是spring cloud的注解,服务可以使用@FeignClient使用和发现服务场中的其他服务 总到来说,Feign的源码实现的过程如下: 详见下面博客 https://blog.csdn.net/chenqipc/article/details/53322796 @ApiOperation注解,@FeignClient 标签:其他 名称 ota res 接口 容器 开启 调用 注解 原文地址:https://www.cnblogs.com/zf201149/p/9074580.html
com.wordnik.swagger.annotations.ApiOperation;
@ApiOperation(value = “接口说明”, httpMethod = “接口请求方式”, response = “接口返回参数类型”, notes = “接口发布说明”;其他参数可参考源码;
@ApiParam(required = “是否必须参数”, name = “参数名称”, value = “参数具体描述”
上一篇:C#设计模式——建造者模式
下一篇:WPF扩展标记X:STATIC
文章标题:@ApiOperation注解,@FeignClient
文章链接:http://soscw.com/index.php/essay/73041.html