Spring Cloud应用开发(五:API网关服务)

 

1、使用Zuul构建API网关服务;

注:本服务涉及到3个工程,起作用分别如下:

  1. ms-spring-eureka-server工程:服务注册中心,端口为8761。
  2. ms-spring-eureka-order工程:服务提供者,需要启动一个订单实例,端口为7900。
  3. Ms-gateway-zuul工程:使用Zuul实现的API Gateway,端口为8050。

 

 

1.1、创建工程,添加依赖。在父工程cloud下创建子模块microservice-gateway-zuul工程,并在其pom.xml中添加eureka和Zuul的依赖;

Spring Cloud应用开发(五:API网关服务)_第1张图片

 

1.2、编辑配置文件,在配置文件中编写Eureka服务实例的端口号,服务端地址等信息;

Spring Cloud应用开发(五:API网关服务)_第2张图片

 

1.3、在工程主类Application中使用@EnableZuulProxy注解开启Zuul的API网关功能;

Spring Cloud应用开发(五:API网关服务)_第3张图片

 

1.4、分别启动注册中心,服务提供者和网关服务;

 

1.5、通过地址http://localhost:7900/order/1单独访问订单服务,如图;

Spring Cloud应用开发(五:API网关服务)_第4张图片

 

1.6、通过Zuul验证路由功能,通过网关服务来访问订单信息,通过地址http://localhost:8050/microservice-eureka-order/order/1访问;

Spring Cloud应用开发(五:API网关服务)_第5张图片

 

你可能感兴趣的:(微服务,软件架构)