Spring Cloud Gateway 是路由使用spring webflux
的Handler Mapping
为基础结构实现的。
Spring Cloud Gateway包含许多内置的路由断言Factories。这些断言都匹配HTTP请求的不同属性。多个路由断言Factories可以通过 and
组合使用
#路由断言
spring.cloud.gateway.routes[0].predicates[0]=Path=/auth/**
#After路由断言,使用一个日期时间,在该日期以后请求才被匹配
spring.cloud.gateway.routes[0].predicates[1]=After=2019-09-12T17:42:47.789-07:00
#Before路由断言,使用一个日期时间,在该日期之前才被匹配
spring.cloud.gateway.routes[0].predicates[1]=Before=2019-09-12T17:42:47.789-07:00
#Between路由断言,使用两个参数用逗号分隔,在两个时间范围内的请求才被匹配
spring.cloud.gateway.routes[0].predicates[1]=Between=2019-09-12T17:42:47.789-07:00,2019-10-12T17:42:47.789-07:00
除了这些还有许多内置的路由断言Factories可以去官网的文档查看。
在spring-cloud-gateway
的官方文档中没有给出自定义Predicate ,只留下一句TODO: document writing Custom Route Predicate Factories
/**
* @author WXY
*/
@Slf4j
public class TokenRoutePredicateFactory extends AbstractRoutePredicateFactory<TokenRoutePredicateFactory.Config> {
private static final String DATETIME_KEY = "headerName";
public TokenRoutePredicateFactory() {
super(Config.class);
}
@Override
public List<String> shortcutFieldOrder() {
return Collections.singletonList(DATETIME_KEY);
}
@Override
public Predicate<ServerWebExchange> apply(Config config) {
log.debug("TokenRoutePredicateFactory Start...");
return exchange -> {
//判断header里有放token
HttpHeaders headers = exchange.getRequest().getHeaders();
List<String> header = headers.get(config.getHeaderName());
log.info("Token Predicate headers:{}", header);
return header.size() > 0;
};
}
public static class Config {
/**
* 传输token header key
*/
private String headerName;
public String getHeaderName() {
return headerName;
}
public void setHeaderName(String headerName) {
this.headerName = headerName;
}
}
}
继承AbstractRoutePredicateFactory
主要实现其中的两个方法
shortcutFieldOrder()
-Config对应的字段
Predicate
-具体的逻辑
还有就是构造方法传入用来装配置的类程序会自动把配置的value
传入apply
中的入参
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author WXY
*
*/
@Configuration
public class RoutesConfiguration {
@Bean
public TokenRoutePredicateFactory initTokenRoutePredicateFactory(){
return new TokenRoutePredicateFactory();
}
}
或者直接在TokenRoutePredicateFactory
类上加@Component
也行
spring.cloud.gateway.routes[1].predicates[1]=Token=Authorization
其中Toekn
为命名RoutePredicateFactory
时的前面部分,所以在定义RoutePredicateFactory
时类名必须后缀为RoutePredicateFactory
,否则找不到自定义的Predicate
/**
* @author WXY
*
*/
@Configuration
public class RoutesConfiguration {
/**
* 代码配置路由
*/
@Bean
public RouteLocator customRouteLocator(RouteLocatorBuilder builder) {
return builder.routes().route(predicateSpec ->
predicateSpec.path("/order/**")
.and().asyncPredicate(initTokenRoutePredicateFactory().applyAsync(config -> config.setHeaderName("Authorization")))
.uri("lb://order-service").id("order-service")
).build();
}
@Bean
public TokenRoutePredicateFactory initTokenRoutePredicateFactory(){
return new TokenRoutePredicateFactory();
}
}
使用代码配置自定义Predicate,主要使用asyncPredicate
方法,把所需的自定义RoutePredicateFactory
对象传进去配置applyAsync
方法传入配置的属性。
spring-cloud-gateway中文文档