美文网首页
核心功能-网关-功能设计

核心功能-网关-功能设计

作者: do_young | 来源:发表于2020-01-19 15:13 被阅读0次

    功能需求概述

    基本功能需求


    attach_159c446168feeba0.png

    健康检查和屏蔽坏节点


    image.png

    防爬防攻击


    image.png

    红绿部署


    image.png

    开发者测试分支


    image.png

    埋点测试


    image.png

    压力测试


    image.png

    调试路由


    image.png

    金丝雀测试


    image.png

    粘性金丝雀


    image.png

    降级测试


    image.png

    持续交付流水线


    image.png

    失败注入测试


    image.png

    非功能需求概述

    概要设计

    功能概要设计

    非功能概要设计

    工程设计

    zuul-gateway

    路由规则

    
     routes:
     auth:
     path:  /api-uaa/**
     service-id: uaa-server
     strip-prefix:  true
     custom-sensitive-headers:  true
     auth-login-page:
     path:  /login.html
     service-id: uaa-server
      strip-prefix:  true
      custom-sensitive-headers:  true
      auth-login-process:
      path:  /user/login
      service-id: uaa-server
      strip-prefix:  true
      custom-sensitive-headers:  true
      auth-login-token:
      path:  /oauth/token
      service-id: uaa-server
      strip-prefix:  true
      custom-sensitive-headers:  true
      auth-login-authorize:
      path:  /oauth/authorize
      service-id: uaa-server
      strip-prefix:  true
      custom-sensitive-headers:  true
      auth-check-process:
      path:  /oauth/check_token
      service-id: uaa-server
      strip-prefix:  true
      custom-sensitive-headers:  true
      user:
      path:  /api-user/**
      service-id: user-center
      strip-prefix:  true
      custom-sensitive-headers:  true
      file:
      path:  /api-file/**
      service-id: file-center
      strip-prefix:  true
      log:
      path:  /api-log/**
      service-id: log-center
      strip-prefix:  true
      generator:
      path:  /api-generator/**
      service-id: code-generator
      strip-prefix:  true
      ssl-hostname-validation-enabled:  false
    

    相关文章

      网友评论

          本文标题:核心功能-网关-功能设计

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