在进行完基本的模拟系统搭建之后,在地址栏中输入请求:http://localhost:8080/order/103,得到如下结果
{
"id": 101,
"price": 699900,
"name": "Apple 苹果 iPhone 12 ",
"num": 1,
"userId": 1,
"user": null
}
打开一个新的窗口,输入请求:http://localhost:8081/user/1,得到如下结果
{
"id": 1,
"username": "柳岩",
"address": "湖南省衡阳市"
}
现在有一个需求,要求用户在请求查看订单时,也需要看到用户的信息,数据结构如下
{
"id": 101,
"price": 699900,
"name": "Apple 苹果 iPhone 12 ",
"num": 1,
"userId": 1,
"user": {
"id": 1,
"username": "柳岩",
"address": "湖南省衡阳市"
}
}
我们的想法是,在 order-service 模块中,再发一次 http 请求,以获取 user 信息
具体措施是:这首先就需要有一个配置类,并且把 RestTemplate 类型装入IOC容器。RestTemplate 是由 Spring 提供的一个 HTTP 请求工具。它提供了常见的REST请求方案的模版,例如 GET 请求、POST 请求、PUT 请求、DELETE 请求以及一些通用的请求执行方法 exchange 以及 execute。
@Configuration
public class RestTemplateConfig {
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
}
在 OrderService 中,修改代码
@Autowired
private RestTemplate restTemplate;
public Order queryOrderById(Long orderId) {
// 1.查询订单
Order order = orderMapper.findById(orderId);
// 2. 利用RestTemplate发送http请求,查询用户
String url = "http://localhost:8081/user/" + order.getUserId();
User user = restTemplate.getForObject(url, User.class);
// 3.封装User到Order
order.setUser(user);
// 4.返回
return order;
}
在地址栏中输入请求:http://localhost:8080/order/103,便得到如下结果
{
"id": 101,
"price": 699900,
"name": "Apple 苹果 iPhone 12 ",
"num": 1,
"userId": 1,
"user": {
"id": 1,
"username": "柳岩",
"address": "湖南省衡阳市"
}
}
消费者该如何获取服务提供者具体信息?
eureka 注册自己的信息eureka 保存这些信息消费者根据服务名称向 eureka 拉取提供者信息如果有多个服务提供者,消费者该如何选择?
消费者如何感知服务提供者健康状态?
EurekaServer 发送心跳请求,报告健康状态eureka 会更新记录服务列表信息,心跳不正常会被剔除
创建一个新的模块 eureka-server,引入 eureka-server 依赖
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-starter-netflix-eureka-serverartifactId>
<version>3.1.3version>
dependency>
在启动类上添加 @EnableEurekaServer 注解
@EnableEurekaServer // 自动装配的开关
@SpringBootApplication
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
在 application.properties 中配置 eureka 地址
server.port=10086
# 微服务名称
spring.application.name=eurekaserver
# 配置Eureka地址(目的是eureka集群之间互相注册)
eureka.client.service-url.defaultZone=http://127.0.0.1:10086/eureka/
eureka.client.register-with-eureka=true
eureka.client.fetch-registry=false
在 user-service 和 order-service 这两个模块中的 pom.xml 引入 eureka-client 依赖
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-starter-netflix-eureka-clientartifactId>
dependency>
在两个 Module 中的 application.yml 中配置 eureka 地址
spring:
application:
name: userservice #服务器名称
eureka:
client:
service-url:
defaultZone: http://127.0.0.1:10086/eureka/
引入 eureka-client 依赖
在 application.yml 中配置 eureka 地址
给消费者(调用者)中 RestTemplate 添加 @LoadBalanced 注解
@Configuration
public class RestTemplateConfig {
@Bean
@LoadBalanced //负责均衡
public RestTemplate restTemplate() {
return new RestTemplate();
}
}
使用idea提供的 copy configuration,并修改新的服务的端口,即在VM options:-Dserver.port=8083。
用服务提供者的服务名称远程调用。从 localhost 变成 userservice
public Order queryOrderById(Long orderId) {
// 1.查询订单
Order order = orderMapper.findById(orderId);
// 2. 利用RestTemplate发送http请求,查询用户
String url = "http://userservice:8081/user/" + order.getUserId();
User user = restTemplate.getForObject(url, User.class);
// 3.封装User到Order
order.setUser(user);
// 4.返回
return order;
}
启动各个服务器
