美文网首页
Zuul基本路由配置(一)

Zuul基本路由配置(一)

作者: 卑微幻想家 | 来源:发表于2019-08-29 08:14 被阅读0次

    本篇文章主要讲解zuul路由的几种基本配置的总结。

    测试项目搭建

    1. 创建一个普通的下游服务client-a
      核心代码
    @RestController
    @RequestMapping("/user")
    public class UserController {
    
        @RequestMapping(value = "/add",method = RequestMethod.GET)
        public String add(Integer id){
            return "user:" + id;
        }
    }
    

    配置文件

    spring:
      application:
        name: client-a
    server:
      port: 8080
    eureka:
      client:
        service-url:
          defaultZone: http://eureka.springcloud.cn/eureka/
    

    2.创建zuul-server服务
    配置文件

    spring:
      application:
        name: zuul-server
    server:
      port: 8888
    eureka:
      client:
        service-url:
          defaultZone: http://eureka.springcloud.cn/eureka/
    zuul:
      routes:
        client-a:
          path: /client/**
          serviceId: client-a
    

    3.接口测试
    启动两个服务,用postman分别测试接口。


    经过zuul网关调取接口

    由结果可知我们在调取http://localhost:8888/client/user/add?id=1接口的时候,实际上是调用的http://localhost:8080/user/add?id=1接口。这是因为我们在zuul配置文件中指定了路由规则,当想zuul server发起请求的时候,他就会去Eureka注册中心拉取服务列表,如果发现有指定的路由映射规则,就会按照规则路由到相应的接口上去。

    Spring Cloud Zuul典型配置

    1.单实例serviceId映射

    zuul:
      routes:
        client-a:
          path: /client/**
          serviceId: client-a
    

    上例中的配置,是一个/client/** 到client-a服务的映射规则,我们可以把它简化为一个较简单的配置

    zuul:
      routes:
        client-a: /client/**
    

    另外还有一种更加简单的映射规则,映射规则与serivceId都不用写

    zuul:
      routes:
        client-a:
    

    在这种情况下,Zuul会给client-a添加一个默认的映射规则/client-a/**,相当于:

    zuul:
      routes:
        client-a:
          path: /client-a/**
          serviceId: client-a
    

    这时候通过http://localhost:8888/client-a/user/add?id=1来调用。
    2.单实例url映射
    除了路由到服务外,还能路由到物理地址,将serviceId替换成url即可

    zuul:
      routes:
        client-a:
          path: /client/**
          url: http://localhost:8080 #client-a的地址
    

    3.多实例路由
    在默认情况下,zuul会使用Eureka中集成的基本负载均衡功能,如果想使用Ribbon的负载均衡功能,就需要指定一个serviceId,此操作需要禁止Ribbon使用Eureka,在E版之后新增了负载均衡的配置。

    zuul:
      routes:
        client-a:
          path: /client/**
          serviceId: client-a
    ribbon:
      eureka:
        enabled: false #禁止Ribbon使用Eureka
    client-a:
      ribbon:
        NIWSServerListClassName: com.netflix.loadbalancer.ConfigurationBasedServerList
        NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RandomRule
        listOfServers: localhost:8080,localhost:8081
    

    4.forward本地跳转
    有时候我们在zuul中会做一些逻辑处理,在网关(zuul server)中写好一个接口,如下所示

    @RestController
    public class TestController {
    
        @RequestMapping(value = "/testMethod",method = RequestMethod.GET)
        public String testMethod(Integer a){
            return "本地跳转:"+a;
        }
    }
    

    配置以下信息

    zuul:
      routes:
        client-a:
          path: /test/**
          url: forward:/testMethod
    

    调用http://localhost:8888/test?a=1接口返回如下

    路由通配符


    先介绍这么多,下次再介绍剩下的。

    相关文章

      网友评论

          本文标题:Zuul基本路由配置(一)

          本文链接:https://www.haomeiwen.com/subject/eygdectx.html