SpringCloud实战项目 PassJava 全套学习教程连载中,关注公众号 第一时间获取。文档在线地址:www.jayh.club
关注公众号
连载中...
打造一款 刷Java 知识的小程序
打造一款 刷Java 知识的小程序(二)
01.五分钟搞懂分布式基础概念
02.快速搭建Linux环境-运维必备
03.配置虚拟机网络
04.安装docker
05.docker安装mysql
06.docker安装redis
07.本地开发环境配置
08.配置Git
09.初始化项目和添加微服务
10.微服务划分图
11.初始化数据库和表
12.快速搭建管理后台
13.自动生成前后端代码
14.整合MyBatis-Plus实现CRUD
15.生成五大微服务的CRUD代码
16.SpringCloudAlibaba组件简介
17.SpringCloudAlibaba-Nacos
示例:查询用户的学习时长
用户微服务passjava-member调用学习微服务passjava-study的方法
passjava-member和passjava-study项目的pom文件引入openfeign依赖
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId></dependency>
返回某个用户学习题目的总时长
@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));}
创建package: com.jackson0714.passjava.member.feign
创建StudyTimeFeignService接口
添加注解@FeignClient。显示声明这个接口用来远程调用study服务。
@FeignClient
study
@FeignClient("passjava-study")publicinterface StudyTimeFeignService {}
添加远程调用方法
public R memberStudyTime();
给方法添加要远程调用的方法的路径study/studytime/member/list/test
study/studytime/member/list/test
@RequestMapping("study/studytime/member/list/test")public R getMemberStudyTimeListTest();
添加注解@EnableFeignClients开启远程调用服务。
@EnableFeignClients
给类PassjavaStudyApplication.java添加注解@EnableFeignClients。
basePackages代表自动扫码指定路径下所有带有@FeignClient注解的接口。
@EnableFeignClients(basePackages = "com.jackson0714.passjava.member.feign")@EnableDiscoveryClient@MapperScan("com.jackson0714.passjava.member.dao")@SpringBootApplicationpublicclass PassjavaMemberApplication { public static void main(String[] args) { SpringApplication.run(PassjavaMemberApplication.class, args); }}
测试接口
启动passjava-member和passjava-study服务
用postman工具或浏览器输入请求地址
http://localhost:10000/member/member/studytime/list/test
返回结果如下图
studytime和member都有数据。
学习时长:100分钟,昵称:悟空聊架构
示例:用户id作为参数在服务间传递
MemberController
@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"));}
StudyTimeFeignService
@FeignClient("passjava-study")publicinterface StudyTimeFeignService { @RequestMapping("study/studytime/member/list/test/{id}") public R getMemberStudyTimeListTest(@PathVariable("id") Long id);}
StudyTimeController
@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));}
更多内容
长按二维码关注
领取架构师资料
点击“阅读原文”,查看在线文档。
帅的人都点了在看!
文章有问题?点此查看未经处理的缓存