是否可以在Spring Cloud Gateway中基于路径进行路由



我的问题如下:我需要根据传入路径设置网关进行路由,例如:http://whatever.com/get/abcd:efgh:jklm:nopq-1234-5678-90ab应该直接指向http://service.com/service5,因为倒数第二个破折号后面的数字是5。照着http://whatever.com/get/abcd:efgh:jklm:nopq-1234-8678-90ab应该直接指向http://service.com/service8,因为倒数第二个破折号后面的数字是8。前面的abcd:efgh:etc不是静态的,所以它可以是任何东西,但它的格式确实有确切数量的分号和破折号,所以我想regex可以做到这一点。但是,我在Path路由谓词中找不到任何内容。(我可以很好地处理Query,因为它接受REGEX,但在这种特殊情况下,我需要根据路径进行路由(。

这可能吗?提前谢谢!

创建CustomRoutePredicateFactory类

public class CustomRoutePredicateFactory extends AbstractRoutePredicateFactory<CustomRoutePredicateFactory.Config> {
public CustomRoutePredicateFactory(Class<Config> configClass) {
super(configClass);
}
public Predicate<ServerWebExchange> apply(Config config) {
return (ServerWebExchange t) -> {
boolean result = false;
int pathServerId = 0; // logic to extract server id from request URL
if(config.getServerId() == pathServerId) {
result= true;
}
return result;
};
}
public static class Config {
private int serverId;
public Config(int serverId) {
this.serverId = serverId;
}
public int getServerId() {
return this.serverId;
}
}
}

在RouteLocatorBuilder中应用谓词工厂两次(分别为5次和8次((以编程方式或配置方式(。下面的程序示例

.route(p -> p
.predicate(customRoutePredicateFactory.apply(
new CustomRoutePredicateFactory.Config(5)))
.uri("lb://service5")
)

玩得开心。享受编码。

您可以创建一个RoutLocator bean,并根据传入的路由路径定义目的地路由。看看这是否有帮助https://www.baeldung.com/spring-cloud-gateway#routing-处理机

相关内容

  • 没有找到相关文章

最新更新