从浅入深 学习 SpringCloud 微服务架构(三)注册中心 Eureka(2)
段子手168
1、搭建 EurekaServer 注册中心,使用 Eureka 的步骤:
1)搭建 EurekaServer
创建工程,导入依赖坐标,配置 application.yml 文件,配置启动类。
2)将服务提供者注册到 EurekaServer
引入 EurekaClient 的依赖坐标。
修改 application.yml 添加 EurekaServer 的信息。
修改启动类,添加服务发现的支持(可选)。
3)服务消费者通过注册中心获取服务列表,并调用。
Eureka 中的元数据:服务的主机名,IP地址等信息,
可以通过 EurekaServer 进行获取,用于服务之间的调用。
2、在 product_service 服务提供者子工程(子模块)的 pom.xml 文件中引入依赖坐标。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>spring_cloud_demo</artifactId>
<groupId>djh.it</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>product_service</artifactId>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<!-- <version>5.1.32</version>-->
<version>8.0.26</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- 引入 EurekaClient 依赖坐标 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
</dependencies>
</project>
<!-- C:\java-test\idea2019\spring_cloud_demo\product_service\pom.xml -->
3、在 product_service 服务提供者子工程(子模块)的 application.yml 添加 EurekaServer 的信息
## C:\java-test\idea2019\spring_cloud_demo\product_service\src\main\resources\application.yml
server:
port: 9001 # 启动端口 命令行注入。
# port: ${port:56010} # 启动端口设置为动态传参,如果未传参数,默认端口为 56010
# servlet:
# context-path: /application1
spring:
application:
name: service-product #spring应用名, # 注意 FeignClient 不支持名字带下划线
# main:
# allow-bean-definition-overriding: true # SpringBoot2.1 需要设定。
datasource:
driver-class-name: com.mysql.jdbc.Driver # mysql 驱动
# url: jdbc:mysql://localhost:3306/shop?useUnicode=true&characterEncoding=utf8
url: jdbc:mysql://localhost:3306/shop?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai
username: root
password: 12311
jpa:
database: MySQL
show-sql: true
open-in-view: true
eureka: # 配置 Eureka
client:
service-url:
defaultZone: http://localhost:9000/eureka/
instance:
prefer-ip-address: true # 使用 ip 地址注册
4、在 product_service 服务提供者子工程(子模块)中,修改启动类,添加服务发现的支持
/**
* C:\java-test\idea2019\spring_cloud_demo\product_service\src\main\java\djh\it\product\ProductApplication.java
*
* 2024-4-17 启动类 ProductApplication.java
*/
package djh.it.product;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@SpringBootApplication
@EntityScan("djh.it.product.domain")
@EnableEurekaClient //激活 EurekaClient, 同 @EnableDiscoveryClient 注解相同。
public class ProductApplication {
public static void main(String[] args) {
SpringApplication.run(ProductApplication.class, args);
}
}
5、在 product_service 服务提供者子工程(子模块)中,运行启动类,进行测试
浏览器地址栏输入:http://localhost:9000 输出界面如下:
6、在 order_service 服务消费者子工程(子模块)的 pom.xml 文件中引入依赖坐标。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>spring_cloud_demo</artifactId>
<groupId>djh.it</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>order_service</artifactId>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<!-- <version>5.1.32</version>-->
<version>8.0.26</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- 引入 EurekaClient 依赖坐标 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
</dependencies>
</project>
<!-- C:\java-test\idea2019\spring_cloud_demo\order_service\pom.xml -->
7、在 order_service 服务消费者子工程(子模块)的 application.yml 添加 EurekaServer 的信息。
## C:\java-test\idea2019\spring_cloud_demo\order_service\src\main\resources\application.yml
server:
port: 9002 # 启动端口 命令行注入。
# port: ${port:9002} # 启动端口设置为动态传参,如果未传参数,默认端口为 9002
# servlet:
# context-path: /application1
spring:
application:
name: service-order #spring应用名, # 注意 FeignClient 不支持名字带下划线
# main:
# allow-bean-definition-overriding: true # SpringBoot2.1 需要设定。
datasource:
driver-class-name: com.mysql.jdbc.Driver # mysql 驱动
# url: jdbc:mysql://localhost:3306/shop?useUnicode=true&characterEncoding=utf8
url: jdbc:mysql://localhost:3306/shop?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai
username: root
password: 12311
jpa:
database: MySQL
show-sql: true
open-in-view: true
eureka: # 配置 Eureka
client:
service-url:
defaultZone: http://localhost:9000/eureka/
instance:
prefer-ip-address: true # 使用 ip 地址注册
8、在 order_service 服务消费者子工程(子模块),修改启动类,添加服务发现的支持。
/**
* C:\java-test\idea2019\spring_cloud_demo\order_service\src\main\java\djh\it\order\OrderApplication.java
*
* 2024-4-19 启动类 OrderApplication.java
*/
package djh.it.order;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;
@SpringBootApplication
@EntityScan("djh.it.order.domain")
@EnableEurekaClient //激活 EurekaClient, 同 @EnableDiscoveryClient 注解相同。
public class OrderApplication {
/**
* 使用 spring 提供的 RestTemplate 发送 http 请求到商品服务。
* 1)创建 RestTemplate 对象交给容器管理。
* 2)在使用的时候,调用其方法完成操作(getXX, postXX)。 *
*/
@Bean
public RestTemplate restTemplate(){
return new RestTemplate();
}
public static void main(String[] args) {
SpringApplication.run(OrderApplication.class, args);
}
}
9、在 order_service 服务消费者子工程(子模块),
修改 Controller 类,添加 获取服务的元数据信息 。
/**
* C:\java-test\idea2019\spring_cloud_demo\order_service\src\main\java\djh\it\order\controller\OrderController.java
*
* 2024-4-19 订单的 controller 类 OrderController.java
*/
package djh.it.order.controller;
import djh.it.order.domain.Product;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.client.RestTemplate;
import java.util.List;
@RestController
@RequestMapping("/order")
public class OrderController {
// 注入 restTemplate 对象
@Autowired
private RestTemplate restTemplate;
/**
* 注入 DiscoveryClient : springcloud 提供的获取元数据的工具类。
* 调用方法获取服务的元数据信息。
*/
@Autowired
private DiscoveryClient discoveryClient;
/**
* 参数:商品的 id
* 通过订单系统,调用商品服务根据id查询商品信息。
* 1)需要配置商品对象。
* 2)需要调用商品服务。
* 可以使用 java 中的 urlconnection, HttpClient, OkHttp 进行远程调用。
* 也可以使用 restTemplate 进行远程调用。
*
* @param id
* @return
*/
@RequestMapping(value = "/buy/{id}", method = RequestMethod.GET)
public Product findById(@PathVariable Long id){
//调用 discoveryClient 方法,已调用服务名称获取所有的元数据。
List<ServiceInstance> instances = discoveryClient.getInstances("service-product");
for (ServiceInstance instance : instances) {
System.out.println(instance);
}
//获取唯一的一个元数据
ServiceInstance instance = instances.get(0);
Product product = null;
//根据元数据中的主机地址和端口号拼接请求微服务的 URL
product = restTemplate.getForObject("http://" + instance.getHost() + ":" + instance.getPort() + "/product/1", Product.class);
/**
* 调用商品服务(将微服务的请求路径硬编码到 java 代码中)
* 存在问题:对微服务调用的负载均衡,加入API网关,配置的统一管理,链路追踪。
*/
//product = restTemplate.getForObject("http://127.0.0.1:9001/product/1", Product.class);
return product;
}
}
10、运行 3个 启动类(order_service, product_service, eureka_service),进行测试
浏览器地址栏输入:http://localhost:9000 输出界面如下:
浏览器地址栏输入:http://localhost:9001/product/1 输出界面如下:
浏览器地址栏输入:http://localhost:9002/order/buy/1 输出界面如下:
上一节学习链接如下:
# 从浅入深 学习 SpringCloud 微服务架构(三)注册中心 Eureka(1)