zuul 设置全局前缀 prefix,比如 api

zuul:
  ignoredServices: '*'
  # 使用 prefix 添加前缀
  prefix: /api
  routes:
    # 用户服务
    user-service:
      path: /user/**
      serviceId: user-service
      strip-prefix: false

访问:http://localhost:8080/api/user/login 自动转成 http://localhost:8080/user/login

你可能感兴趣的:(Springboot)