Feign注意事项
* 1、FeignClients使用注意事项:
* 1. @EnableFeignClients 默认扫描 xxxxApplication启动入口 所在包路径下的 @FeignClient bean,若没法扫描到, 能够在使用Feign调用外部模块的api时候,须要在引用服务中 xxxxApplication 中的 `@EnableFeignClients(basePackages = "cn.tendyron.customer")` 添加外部包须要扫描FeignClient的路径,不然没法注入bean
* 2. @FeignClient 声明的类,使用 spring.application.name 做为 name配置 @FeignClient(name="xxxx"),若是想保留 context-path , 则须要配置 path 属性 ,如:@FeignClient(name="xxxx" , path="xxxx(context-path)")
* 3. @FeignClient 接口对应的实现类,须要使用 @RestController注解 声明
* 4. mapper注解不支持 : @GetMapping,@PostMapping , 参数要加 @RequestParam(“xxx”)
* 5. FeignClient 调用,实质是httpClient调用 ,若咱们暴露的接口api,声明了对应的 http mapper 信息,在调用方调用时候,经过代理 发起了 http请求,到服务提供方对应的http服务上去,因此在服务提供方的接口,能够使用 @RestController
* 来声明接口的 实现,不然调用方没法找到 http 对应的路径,会报404 ;
* 或者 根据 api 声明的http 信息,构建一个 Controller ,再来调用接口的实现类,可是这样不太方便;
Feign接口定义
package cn.tendyron.customer.api;
import cn.tendyron.common.api.protocol.CommonResult;
import cn.tendyron.customer.bo.OrgUserBO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
/**
* @author CRong.L
* @ClassName: TestService:
* @Description: 测试服务,注意 Feign的标准写法
* @date 2019/7/5
*/
@FeignClient(name = "customer-center",path = "customer")
public interface TestService {
/**
* 1、FeignClients使用注意事项:
* 1. @EnableFeignClients 默认扫描 xxxxApplication启动入口 所在包路径下的 @FeignClient bean,若没法扫描到, 能够在使用Feign调用外部模块的api时候,须要在引用服务中 xxxxApplication 中的 `@EnableFeignClients(basePackages = "cn.tendyron.customer")` 添加外部包须要扫描FeignClient的路径,不然没法注入bean
* 2. @FeignClient 声明的类,使用 spring.application.name 做为 name配置 @FeignClient(name="xxxx"),若是想保留 context-path , 则须要配置 path 属性 ,如:@FeignClient(name="xxxx" , path="xxxx(context-path)")
* 3. @FeignClient 接口对应的实现类,须要使用 @RestController注解 声明
* 4. mapper注解不支持 : @GetMapping,@PostMapping , 参数要加 @RequestParam(“xxx”)
* 5. FeignClient 调用,实质是httpClient调用 ,若咱们暴露的接口api,声明了对应的 http mapper 信息,在调用方调用时候,经过代理 发起了 http请求,到服务提供方对应的http服务上去,因此在服务提供方的接口,能够使用 @RestController
* 来声明接口的 实现,不然调用方没法找到 http 对应的路径,会报404 ;
* 或者 根据 api 声明的http 信息,构建一个 Controller ,再来调用接口的实现类,可是这样不太方便;
*/
/**
* 测试Feign Get ,普通处理
* 注意: @RequestParam("xx") 注解必定要写,并且属性名xx不能省略
*/
@RequestMapping(value = "/test/getUserBo",method = RequestMethod.GET)
CommonResult<OrgUserBO> getUserBo(@RequestParam("orgCode") String orgCode , @RequestParam("username") String name);
/**
* 测试Feign Get Pojo
*/
@RequestMapping(value = "/test/testUserBo",method = RequestMethod.GET)
CommonResult<OrgUserBO> testUserBo(OrgUserBO userBO , @RequestParam("token") String token);
/**
* 测试Feign Post Pojo
* 注意:实现类也要在参数前加 @RequestBody
*/
@RequestMapping(value = "/test/postUserBo",method = RequestMethod.POST)
CommonResult<OrgUserBO> postUserBo(@RequestBody OrgUserBO userBO);
}
接口实现
package cn.tendyron.customer.service.impl;
import cn.tendyron.common.api.protocol.CommonResult;
import cn.tendyron.common.util.BeanUtils;
import cn.tendyron.customer.api.AuthService;
import cn.tendyron.customer.api.TestService;
import cn.tendyron.customer.bo.OrgUserBO;
import cn.tendyron.customer.common.constant.BizErrorCodeEnum;
import cn.tendyron.customer.common.constant.Constant;
import cn.tendyron.customer.entity.OrgUserDO;
import cn.tendyron.customer.support.OrgUserSupport;
import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.util.Assert;
import org.springframework.web.bind.annotation.RestController;
import java.util.Objects;
import java.util.concurrent.TimeUnit;
/**
* @author CRong.L
* @ClassName: TestServiceImpl
* @Description:
* @date 2019/7/5
*/
@Slf4j
@RestController
public class TestServiceImpl implements TestService {
@Autowired
RedisTemplate redisTemplate;
@Override
public CommonResult<OrgUserBO> getUserBo(String orgCode, String name) {
return null;
}
@Override
public CommonResult<OrgUserBO> testUserBo(OrgUserBO userBO,String token) {
log.info("Feign Get Pojo token:{}",token);
return CommonResult.success(userBO);
}
@Override
public CommonResult<OrgUserBO> postUserBo(OrgUserBO userBO) {
return CommonResult.success(userBO);
}
}