seninel部署
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Eric Zhao fca70646ad Bump version to 1.8.2-SNAPSHOT 3 vuotta sitten
..
src adapter: Add test cases for Spring WebFlux HandlerFunction (#1678) 4 vuotta sitten
README.md Update source/target JDK version to 1.8 and update documents 3 vuotta sitten
pom.xml Bump version to 1.8.2-SNAPSHOT 3 vuotta sitten

README.md

Sentinel Spring WebFlux Adapter

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):

<dependency>
    <groupId>com.alibaba.csp</groupId>
    <artifactId>sentinel-spring-webflux-adapter</artifactId>
    <version>x.y.z</version>
</dependency>

Then you only need to inject the corresponding SentinelWebFluxFilter and SentinelBlockExceptionHandler instance in Spring configuration. For example:

@Configuration
public class WebFluxConfig {

    private final List<ViewResolver> viewResolvers;
    private final ServerCodecConfigurer serverCodecConfigurer;

    public WebFluxConfig(ObjectProvider<List<ViewResolver>> 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, if the finalUrl is """ or null, the URLs will be excluded (since Sentinel 1.7.0)..
  • 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.