ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 路由配置 在`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/** ~~~