服务提供者:一次业务中,被其他微服务调用的服务。(提供接口给其他微服务)
服务消费者:一次业务中,调用其他微服务的服务。(调用其他微服务提供的接口)
服务消费者该如何获取服务提供者的地址信息?
服务提供者启动时向 eureka 注册自己的信息;
eureka 保存这些信息;
消费者根据服务名称向 eurekaa 拉取提供者信息;
如果有多个服务提供者,服务消费者该如何选择?
服务消费者利用负载均衡算法,从服务列表中挑选一个;
消费者如何得知服务提供者的健康状态(是否挂掉)?
服务提供者会每隔30秒向 eureka-server 发送心跳请求,报告健康状态;
eureka 会更新记录服务列表信息,心跳不正常会被剔除;
消费者就可以拉取到最新的信息;
创建项目,引入依赖:
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-starter-netflix-eureka-serverartifactId>
dependency>
编写启动类,在启动类上添加@EnableEurekaServer
注解:
@SpringBootApplication
@EnableEurekaServer
public class EurekaApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaApplication.class, args);
}
}
添加 application.yml 文件,编写下面配置:
server:
port: 10086
spring:
application:
name: eurekaserver
eureka:
client:
service-url:
defaultZone: http://127.0.0.1:10086/eureka/
启动项目:
在两个模块中的pom.xml引入依赖:
<dependency>
<groupId>org.springframework.cloudgroupId>
<artifactId>spring-cloud-starter-netflix-eureka-serverartifactId>
dependency>
在两个模块的 yml 配置文件中编写配置:
user-service模块:
spring:
application:
name: userservice
eureka:
client:
service-url:
defaultZone: http://127.0.0.1:10086/eureka/
order-service模块:
spring:
application:
name: orderservice
eureka:
client:
service-url:
defaultZone: http://127.0.0.1:10086/eureka/
注册成功:
修改 OrderServiceImpl 中的代码,修改访问 url 路径,用服务名代替 ip、端口:
String url = "http://userservice/user/" + order.getUserId();
在config层下创建:
@Component
public class RestTemplateConfig {
/**
* 创建 RestTemplate 并注入 Spring 容器
* @LoadBalanced 注解描述:负载均衡作用
*/
@LoadBalanced
@Bean
public RestTemplate restTemplate(){
return new RestTemplate();
}
}
修改端口(覆盖原来的端口):
启动项目(发现有两个 userservice):
测试结果:
user-service:8081和user-service:8082都会执行sql语句。