标签:其他 名称 ota res 接口 容器 开启 调用 注解
@ApiOperation不是spring自带的注解,是swagger里的
com.wordnik.swagger.annotations.ApiOperation;
@ApiOperation和@ApiParam为API生成做的注解,个参数说明如下:
@ApiOperation(value = “接口说明”, httpMethod = “接口请求方式”, response = “接口返回参数类型”, notes = “接口发布说明”;其他参数可参考源码;
@ApiParam(required = “是否必须参数”, name = “参数名称”, value = “参数具体描述”
详细请参与如下:
https://blog.csdn.net/fansunion/article/details/51923720
@FeignClient
是spring cloud的注解,服务可以使用@FeignClient使用和发现服务场中的其他服务
总到来说,Feign的源码实现的过程如下:
详见下面博客
https://blog.csdn.net/chenqipc/article/details/53322796
标签:其他 名称 ota res 接口 容器 开启 调用 注解
原文地址:https://www.cnblogs.com/zf201149/p/9074580.html