18.SpringCloud实战项目- 整合OpenFeign实现声明式远程调用
2021-02-12 11:17
标签:eid learning cloud 时长 tis 配置 ppi 浏览器 地址 SpringCloud实战项目全套学习教程连载中 示例:查询用户的学习时长 用户微服务passjava-member调用学习微服务passjava-study的方法 passjava-member和passjava-study项目的pom文件引入openfeign依赖 返回某个用户学习题目的总时长 创建package: com.jackson0714.passjava.member.feign 创建StudyTimeFeignService接口 添加注解 添加远程调用方法 给方法添加要远程调用的方法的路径 添加注解 给类PassjavaStudyApplication.java添加注解 basePackages代表自动扫码指定路径下所有带有@FeignClient注解的接口。 测试接口 启动passjava-member和passjava-study服务 用postman工具或浏览器输入请求地址 http://localhost:10000/member/member/studytime/list/test 返回结果如下图 studytime和member都有数据,学习时长:100分钟,昵称:悟空聊架构 示例:用户id作为参数在服务间传递 MemberController StudyTimeFeignService StudyTimeController https://github.com/Jackson0714/PassJava-Platform 18.SpringCloud实战项目- 整合OpenFeign实现声明式远程调用 标签:eid learning cloud 时长 tis 配置 ppi 浏览器 地址 原文地址:https://www.cnblogs.com/jackson0714/p/12730814.html
PassJava 学习教程
简介
面试刷题
的开源系统,可以用零碎时间利用小程序查看常见面试题,夯实Java基础。更好的阅读体验
文档连载目录
Spring Cloud 整合 OpenFeign实现声明式远程调用
1.Feign 概述
2. 远程调用示例
1.引入openfeign依赖
2.StudyTimeController定义远程调用测试方法
@RequestMapping("/member/list/test")
public R memberStudyTimeTest() {
StudyTimeEntity studyTimeEntity = new StudyTimeEntity();
studyTimeEntity.setTotalTime(100); // 学习时长:100分钟
studyTimeEntity.setQuesTypeId(1L); // 题目类型:1 (javaBasic)
return R.ok().put("studyTime", Arrays.asList(studyTimeEntity));
}
3.member目录下创建feign service
@FeignClient
。显示声明这个接口用来远程调用study
服务。@FeignClient("passjava-study")
public interface StudyTimeFeignService {}
public R memberStudyTime();
study/studytime/member/list/test
@RequestMapping("study/studytime/member/list/test")
public R getMemberStudyTimeListTest();
@EnableFeignClients
开启远程调用服务。@EnableFeignClients
。@EnableFeignClients(basePackages = "com.jackson0714.passjava.member.feign")
@EnableDiscoveryClient
@MapperScan("com.jackson0714.passjava.member.dao")
@SpringBootApplication
public class PassjavaMemberApplication {
public static void main(String[] args) {
SpringApplication.run(PassjavaMemberApplication.class, args);
}
}
4.测试OpenFeign传参
@RequestMapping("/studytime/list/test/{id}")
public R getMemberStudyTimeListTest(@PathVariable("id") Long id) {
//mock数据库查到的会员信息
MemberEntity memberEntity = new MemberEntity();
memberEntity.setId(id); // 学习时长:100分钟
memberEntity.setNickname("悟空聊架构");
//远程调用拿到该用户的学习时长(学习时长是mock数据)
R memberStudyTimeList = studyTimeFeignService.getMemberStudyTimeListTest(id);
return R.ok().put("member", memberEntity).put("studytime", memberStudyTimeList.get("studytime"));
}
@FeignClient("passjava-study")
public interface StudyTimeFeignService {
@RequestMapping("study/studytime/member/list/test/{id}")
public R getMemberStudyTimeListTest(@PathVariable("id") Long id);
}
@RequestMapping("/member/list/test/{id}")
public R memberStudyTimeTest(@PathVariable("id") Long id) {
StudyTimeEntity studyTimeEntity = new StudyTimeEntity();
studyTimeEntity.setTotalTime(100); // 学习时长:100分钟
studyTimeEntity.setQuesTypeId(1L); // 题目类型:1 (javaBasic)
return R.ok().put("studytime", Arrays.asList(studyTimeEntity));
}
3.总结FeignClient使用方法
@FeignClient
),声明这个接口类是用来远程调用其他服务的@EnableFeignClients
)代码地址
公众号
文章标题:18.SpringCloud实战项目- 整合OpenFeign实现声明式远程调用
文章链接:http://soscw.com/index.php/essay/54412.html