From 1a482b1d9f6f6a9676dcfecf99774cc29a7ee567 Mon Sep 17 00:00:00 2001 From: Eric Zhao Date: Thu, 14 Mar 2019 10:21:00 +0800 Subject: [PATCH] doc: Update README for new adapter modules Signed-off-by: Eric Zhao --- .../sentinel-reactor-adapter/README.md | 23 ++++++++ .../sentinel-spring-webflux-adapter/README.md | 56 +++++++++++++++++++ 2 files changed, 79 insertions(+) create mode 100644 sentinel-adapter/sentinel-reactor-adapter/README.md create mode 100644 sentinel-adapter/sentinel-spring-webflux-adapter/README.md diff --git a/sentinel-adapter/sentinel-reactor-adapter/README.md b/sentinel-adapter/sentinel-reactor-adapter/README.md new file mode 100644 index 00000000..28c6bed8 --- /dev/null +++ b/sentinel-adapter/sentinel-reactor-adapter/README.md @@ -0,0 +1,23 @@ +# Sentinel Reactor Adapter + +> Note: this module requires Java 8 or later version. + +Sentinel provides integration module for [Reactor](https://projectreactor.io/). + +Add the following dependency in `pom.xml` (if you are using Maven): + +```xml + + com.alibaba.csp + sentinel-reactor-adapter + x.y.z + +``` + +Example: + +```java +someService.doSomething() // return type: Mono or Flux + .transform(new SentinelReactorTransformer<>(resourceName)) // transform here + .subscribe(); +``` \ No newline at end of file diff --git a/sentinel-adapter/sentinel-spring-webflux-adapter/README.md b/sentinel-adapter/sentinel-spring-webflux-adapter/README.md new file mode 100644 index 00000000..ed47f5d7 --- /dev/null +++ b/sentinel-adapter/sentinel-spring-webflux-adapter/README.md @@ -0,0 +1,56 @@ +# Sentinel Spring WebFlux Adapter + +> Note: this module requires Java 8 or later version. + +Sentinel provides integration module with Spring WebFlux, so reactive web applications can also leverage Sentinel's flow control +and circuit breaking to achieve reliability. The integration module is based on the Sentinel Reactor Adapter. + +Add the following dependency in `pom.xml` (if you are using Maven): + +```xml + + com.alibaba.csp + sentinel-spring-webflux-adapter + x.y.z + +``` + +Then you only need to inject the corresponding `SentinelWebFluxFilter` and `SentinelBlockExceptionHandler` instance +in Spring configuration. For example: + +```java +@Configuration +public class WebFluxConfig { + + private final List viewResolvers; + private final ServerCodecConfigurer serverCodecConfigurer; + + public WebFluxConfig(ObjectProvider> viewResolversProvider, + ServerCodecConfigurer serverCodecConfigurer) { + this.viewResolvers = viewResolversProvider.getIfAvailable(Collections::emptyList); + this.serverCodecConfigurer = serverCodecConfigurer; + } + + @Bean + @Order(-1) + public SentinelBlockExceptionHandler sentinelBlockExceptionHandler() { + // Register the block exception handler for Spring WebFlux. + return new SentinelBlockExceptionHandler(viewResolvers, serverCodecConfigurer); + } + + @Bean + @Order(-1) + public SentinelWebFluxFilter sentinelWebFluxFilter() { + // Register the Sentinel WebFlux filter. + return new SentinelWebFluxFilter(); + } +} +``` + +You can register various customized callback in `WebFluxCallbackManager`: + +- `setBlockHandler`: register a customized `BlockRequestHandler` to handle the blocked request. The default implementation is `DefaultBlockRequestHandler`, which returns default message like `Blocked by Sentinel: FlowException`. +- `setUrlCleaner`: used for normalization of URL. The function type is `(ServerWebExchange, String) → String`, which means `(webExchange, originalUrl) → finalUrl`. +- `setRequestOriginParser`: used to resolve the origin from the HTTP request. The function type is `ServerWebExchange → String`. + +You can also refer to the demo: [sentinel-demo-spring-webflux](https://github.com/alibaba/Sentinel/tree/master/sentinel-demo/sentinel-demo-spring-webflux). \ No newline at end of file