seninel部署
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Eric Zhao fca70646ad Bump version to 1.8.2-SNAPSHOT 3 anos atrás
..
src Update resource classification in SentinelWebFluxFilter and improve reactor EntryConfig 5 anos atrás
README.md Update source/target JDK version to 1.8 and update documents 3 anos atrás
pom.xml Bump version to 1.8.2-SNAPSHOT 3 anos atrás

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