Browse Source
This overloads the methods from RouterFunctions and automatically adds the FilterFunctions.routeId() filter, which adds the routeId as a request attribute. This request attribute is in turn, used to determine if the current route is a "gateway route"; See gh-2949pull/3006/head
sgibb
1 year ago
4 changed files with 62 additions and 9 deletions
@ -0,0 +1,46 @@
@@ -0,0 +1,46 @@
|
||||
/* |
||||
* Copyright 2013-2023 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.cloud.gateway.server.mvc.handler; |
||||
|
||||
import org.springframework.web.servlet.function.HandlerFunction; |
||||
import org.springframework.web.servlet.function.RequestPredicate; |
||||
import org.springframework.web.servlet.function.RouterFunction; |
||||
import org.springframework.web.servlet.function.RouterFunctions; |
||||
import org.springframework.web.servlet.function.RouterFunctions.Builder; |
||||
import org.springframework.web.servlet.function.ServerResponse; |
||||
|
||||
import static org.springframework.cloud.gateway.server.mvc.filter.FilterFunctions.routeId; |
||||
|
||||
public abstract class GatewayRouterFunctions { |
||||
|
||||
private GatewayRouterFunctions() { |
||||
} |
||||
|
||||
public static Builder route() { |
||||
return RouterFunctions.route(); |
||||
} |
||||
|
||||
public static Builder route(String routeId) { |
||||
return RouterFunctions.route().filter(routeId(routeId)); |
||||
} |
||||
|
||||
public static <T extends ServerResponse> RouterFunction<T> route(RequestPredicate predicate, |
||||
HandlerFunction<T> handlerFunction) { |
||||
return RouterFunctions.route(predicate, handlerFunction); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue