💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 路由配置 在`spring cloud gateway`中配置`uri`有三种方式,包括 * websocket配置方式 ~~~ spring: cloud: gateway: routes: - id: hmall-api uri: ws://localhost:9090/ predicates: - Path=/api/** ~~~ * http地址配置方式 ~~~ spring: cloud: gateway: routes: - id: hmall-api uri: http://localhost:9090/ predicates: - Path=/api/** ~~~ * 注册中心配置方式 ~~~ spring: cloud: gateway: routes: - id: hmall-api uri: lb://hmall-api predicates: - Path=/api/** ~~~