seninel部署
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Eric Zhao fca70646ad Bump version to 1.8.2-SNAPSHOT před 3 roky
..
src Update resource classification in SentinelWebFluxFilter and improve reactor EntryConfig před 5 roky
README.md Update source/target JDK version to 1.8 and update documents před 3 roky
pom.xml Bump version to 1.8.2-SNAPSHOT před 3 roky

README.md

Sentinel Reactor Adapter

Sentinel provides integration module for Reactor.

Add the following dependency in pom.xml (if you are using Maven):

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

Example:

someService.doSomething() // return type: Mono<T> or Flux<T>
   .transform(new SentinelReactorTransformer<>(resourceName)) // transform here
   .subscribe();