Context Propagation with Project Reactor 3 - Unified Bridging between Reactive and Imperative
This post is a part of a series:
We concluded the last article with the thought that Spring Cloud Sleuth’s MANUAL
context propagation strategy is both performant and provides correct semantics. Out of many experiences, the Spring, Micrometer, and Reactor teams created a new context-propagation library. Its goal is to encapsulate the concern of transporting contextual data between ThreadLocal
values and Map
-like structures. Both Micrometer 1.10 and Reactor 3.5 build on top of it to provide a first-class experience between Reactor and imperative code. By using Reactor Context
, we implicitly expose ThreadLocal
…