Springboot 内部服务调用方式
目录
Eureka注册的服务之间互相调用1.请求方2.接收方多模块化,服务间调用的坑问题背景解决办法Eureka注册的服务之间互相调用
1.请求方
启动类添加注解,扫描Eureka 中的全部服务
@SpringBootApplication @EnableEurekaClient @EnableFeignClients public class LoginServiceApplication { public static void main(String[] args) { new SpringApplicationBuilder(LoginServiceApplication.class).web(true).run(args); } }
pom.xml 添加包 (版本号 根据实际选择)
org.springframework.cloud spring-cloud-starter-feign 1.4.6.RELEASE
创建接口类
@FeignClient(name="hello-service") //spring service name public interface FeignVehicle { @RequestMapping(value="/hello", method = RequestMethod.GET) @ResponseBody public List
实现类注入此接口类
@Autowired FeignVehicle feignVehicle;
使用的时候直接按照正常调用方式即可
Mapmap = new HashMap (); feignVehicle.hello(map);
跨服务调用的时候出现token信息取不到,在发送方添加拦截器
@Configuration public class FeignConfiguration { @Bean public RequestInterceptor requestInterceptor() { return new RequestInterceptor() { @Override public void apply(RequestTemplate template) { ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder .getRequestAttributes(); HttpServletRequest request = attributes.getRequest(); //当前服务token template.header("Authorization","Bearer " + request.getSession().getId()); //template 接收请求方token } }; } }
2.接收方
请求 启动类
@SpringBootApplication @EnableEurekaClient public class HelloServiceApplication { public static void main(String[] args) { new SpringApplicationBuilder(HelloServiceApplication.class).web(true).run(args); } }
请求Controller
@Controller @RequestMapping("/hello") public class HelloController { @RequestMapping(value="/hello",method = RequestMethod.GET) @ResponseBody public List
多模块化,服务间调用的坑
问题背景
product
服务作为服务端,提供了一个 对外通信Fegin接口 ProductClient,放在了com.imooc.product.client jar包下order
服务作为客户端,直接引用上面的jar,使用 ProductClient ,启动主类后报下图错误:
解决办法
多模块化时,应该在order主类上添加下面圈出来的注解,这样启动后就能扫描这个包。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
X 关闭
X 关闭
- 15G资费不大降!三大运营商谁提供的5G网速最快?中国信通院给出答案
- 2联想拯救者Y70发布最新预告:售价2970元起 迄今最便宜的骁龙8+旗舰
- 3亚马逊开始大规模推广掌纹支付技术 顾客可使用“挥手付”结账
- 4现代和起亚上半年出口20万辆新能源汽车同比增长30.6%
- 5如何让居民5分钟使用到各种设施?沙特“线性城市”来了
- 6AMD实现连续8个季度的增长 季度营收首次突破60亿美元利润更是翻倍
- 7转转集团发布2022年二季度手机行情报告:二手市场“飘香”
- 8充电宝100Wh等于多少毫安?铁路旅客禁止、限制携带和托运物品目录
- 9好消息!京东与腾讯续签三年战略合作协议 加强技术创新与供应链服务
- 10名创优品拟通过香港IPO全球发售4100万股 全球发售所得款项有什么用处?