seninel部署
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Eric Zhao fca70646ad Bump version to 1.8.2-SNAPSHOT il y a 3 ans
..
src Update resource classification in SentinelWebFluxFilter and improve reactor EntryConfig il y a 5 ans
README.md Update source/target JDK version to 1.8 and update documents il y a 3 ans
pom.xml Bump version to 1.8.2-SNAPSHOT il y a 3 ans

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();