seninel部署
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
Eric Zhao fca70646ad Bump version to 1.8.2-SNAPSHOT 3 lat temu
..
src Update resource classification in SentinelWebFluxFilter and improve reactor EntryConfig 5 lat temu
README.md Update source/target JDK version to 1.8 and update documents 3 lat temu
pom.xml Bump version to 1.8.2-SNAPSHOT 3 lat temu

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