SpringCloud神兽(五)之Zuul

一. Zuul路由网关概述

Zuul包含了对请求的路由和过滤两个最主要的功能:

其中路由功能负责将外部请求转发到具体的微服务实例上,是实现外部访问统一入口的基础而过滤器功能则负责对请求的处理过程进行干预,是实现请求校验、服务聚合等功能的基础.

Zuul和Eureka进行整合,将Zuul自身注册为Eureka服务治理下的应用,同时从Eureka中获得其他微服务的消息,也即以后的访问微服务都是通过Zuul跳转后获得。

注意:Zuul服务最终还是会注册进Eureka

Zuul能干嘛:代理、路由、过滤

二. 路由基本配置

①新建模块microservicecloud-zuul-gateway-9527

②修改pom.xml文件

<dependencies>

  <!-- zuul路由网关 -->

  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-zuul</artifactId>
  </dependency> 

  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-eureka</artifactId>
  </dependency>

  <!-- actuator监控 -->

  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-actuator</artifactId>
  </dependency>

  <!--  hystrix容错-->

  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-hystrix</artifactId>
  </dependency>

  <dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-config</artifactId>
  </dependency>

  <!-- 日常标配 -->

  <dependency>
   <groupId>com.wanbangee.springcloud</groupId>
   <artifactId>microservicecloud-api</artifactId>
   <version>${project.version}</version>
  </dependency>

  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-jetty</artifactId>
  </dependency>

  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
  </dependency>

  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-test</artifactId>
  </dependency>

  <!-- 热部署插件 -->

  <dependency>
   <groupId>org.springframework</groupId>
   <artifactId>springloaded</artifactId>
  </dependency>

  <dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-devtools</artifactId>
  </dependency>

 </dependencies>

③新建yml文件

server: 

 port: 9527
 
spring: 
 application:
  name: microservicecloud-zuul-gateway

eureka: 
 client: 
  service-url: 
   defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka,http://eureka7003.com:7003/eureka  
 instance:
  instance-id: gateway-9527.com
  prefer-ip-address: true 

info:
 app.name: wanbangee-microcloud
 company.name: www.wanbangee.com
 build.artifactId: $project.artifactId$
 build.version: $project.version$

④新建启动类

@SpringBootApplication
@EnableZuulProxy
public class Zuul_9527_StartSpringCloudApp {
    public static void main(String[] args) {
        SpringApplication.run(Zuul_9527_StartSpringCloudApp.class, args);
    }
}

⑤测试

不用路由:http://localhost:8001/dept/list

启动路由:http://localhost:9527/mictoservicecloud-dept/dept/list

三. 路由访问映射规则
server: 
  port: 9527

spring: 
  application: 
    name: microservicecloud-zuul-gateway

eureka: 
  client: 
    service-url: 
      defaultZone: http://eureka7001:7001/eureka,http://eureka7002:7002/eureka,http://eureka7003:7003/eureka  
  instance: 
    instance-id: gateway-9527.com
    prefer-ip-address: true 

# zuul 的访问值只针对外部【如外部浏览器或者前端的异步请求访问需要符合zuul规则】,对内不做代理【微服务与微服务之间的调用不需使用zuul定义的规则】
zuul: 
  prefix: /nhkj #设置统一的前缀
  ignored-services: microservicecloud-dept # 忽略真实服务名称   ignored-services: "*"  #忽略所有的服务名称
  routes: 
    mydept.serviceId: microservicecloud-dept
    mydept.path: /mydept/**

info: 
  app.name: wanbangee-microcloud
  company.name: www.wanbangee.com
  build.artifactId: $project.artifactId$
  build.version: $project.version$

测试:

http://localhost:8001/dept/list

http://localhost:9527/nhkj/mydept/dept/list

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值