routes: - id: path_route uri: lb://service-product predicates: - Path=/admin/product/**
时间: 2024-06-05 21:12:00 浏览: 139
mount-koa-routes:mount-koa-routes =使用route_folder_path自动安装koajs路由
这是一个Spring Cloud Gateway的路由配置,它指定了一个 id 为 path_route 的路由规则,当请求的路径以 /admin/product/ 开头时,会将请求转发到名为 service-product 的服务实例上进行处理。lb:// 是指使用负载均衡器来选择服务实例。该路由规则还使用了 Path 谓词,表示只有符合路径匹配条件的请求才会被路由到该服务实例上。
阅读全文