diff --git a/2.0.x/multi/multi__configuration.html b/2.0.x/multi/multi__configuration.html index 96668c2e..1ffb52ce 100644 --- a/2.0.x/multi/multi__configuration.html +++ b/2.0.x/multi/multi__configuration.html @@ -21,9 +21,9 @@ filters: - SetStatus=401
For some usages of the gateway, properties will be adequate, but some production use cases will benefit from loading configuration from an external source, such as a database. Future milestone versions will have RouteDefinitionLocator implementations based off of Spring Data Repositories such as: Redis, MongoDB and Cassandra.
To allow for simple configuration in Java, there is a fluent API defined in the Routes class.
Config.java. -
// static imports from WebFilterFactories and RoutePredicates +// static imports from GatewayFilters and RoutePredicates @Bean -public RouteLocator customRouteLocator(ThrottleWebFilterFactory throttle) { +public RouteLocator customRouteLocator(ThrottleGatewayFilterFactory throttle) { return Routes.locator() .route("test") .uri("http://httpbin.org:80") diff --git a/2.0.x/multi/multi__developer_guide.html b/2.0.x/multi/multi__developer_guide.html index 2bd8f340..6d22dbe6 100644 --- a/2.0.x/multi/multi__developer_guide.html +++ b/2.0.x/multi/multi__developer_guide.html @@ -1,3 +1,3 @@ -9. Developer Guide \ No newline at end of file +TODO: overview of writing custom integrations
9. Developer Guide TODO: overview of writing custom integrations