第193天学习打卡(项目 谷粒商城35 调试会员等级相关接口)

调试会员等级相关接口

 

gulimall-gateway

application.yml(这是原本没有修改的文件)

 spring:
  cloud:
    gateway:
      routes:
 ​
        - id: product_route
          uri: lb://gulimall-product
          predicates:
            - Path=/api/product/**
          filters:
            - RewritePath=/api/(?<segment>.*),/$\{segment}
 ​
 ​
 ​
        - id: third_party_route
          uri: lb://gulimall-third-party
          predicates:
            - Path=/api/thirdparty/**
          filters:
            - RewritePath=/api/thirdparty/(?<segment>.*),/$\{segment}
 ​
 ​
        - id: third_party_route
          uri: lb://gulimall-third-party
          predicates:
            - Path=/api/thirdparty/**
          filters:
            - RewritePath=/api/(?<segment>.*),/$\{segment}
 ​
 ​
 ​
        - id: admin_route
          uri: lb://renren-fast
          predicates:
            - Path=/api/**
          filters:
            - RewritePath=/api/(?<segment>.*),/renren-fast/$\{segment}
 ​

这里添加了member的网关

gulimall-gateway

application.yml

 spring:
  cloud:
    gateway:
      routes:
 ​
 ​
        - id: product_route
          uri: lb://gulimall-product
          predicates:
            - Path=/api/product/**
          filters:
            - RewritePath=/api/(?<segment>.*),/$\{segment}
 ​
        - id: third_party_route
          uri: lb://gulimall-third-party
          predicates:
            - Path=/api/thirdparty/**
          filters:
            - RewritePath=/api/thirdparty/(?<segment>.*),/$\{segment}
 ​
        - id: member_route
          uri: lb://gulimall-member
          predicates:
            - Path=/api/member/**
          filters:
            - RewritePath=/api/(?<segment>.*),/$\{segment}
 ​
 ​
 ​
        - id: admin_route
          uri: lb://renren-fast
          predicates:
            - Path=/api/**
          filters:
            - RewritePath=/api/(?<segment>.*),/renren-fast/$\{segment}
 ​
 ​
 ​
 ​
 ​

第193天学习打卡(项目 谷粒商城35 调试会员等级相关接口)

 

第193天学习打卡(项目 谷粒商城35 调试会员等级相关接口)

 

点击新增就会有相应的操作了

第193天学习打卡(项目 谷粒商城35 调试会员等级相关接口)

第193天学习打卡(项目 谷粒商城35 调试会员等级相关接口)

 

B站学习网址:全网最强电商教程《谷粒商城》对标阿里P6/P7,40-60万年薪哔哩哔哩bilibili

上一篇:请定义一个函数 quadratic(a, b, c),接收 3 个参数,返回一元二次方程: ax2 + bx + c = 0 的两个解


下一篇:DAY 193 pycharm安装教程