Hi authors,
first of all, good luck for your book ! I wish to ask you a question about WebFlux and, more generally, about reactive approach in
Java.
I'm just approaching to this programming style, and at the moment the most important problem I can see in adopting reactive approach is the lack of (wide) support for relational databases.
Also , we have a number of already well established application @Services in our programs, most of which perform somehow data access, in a transactional way.
As far as I know, a number of annotations like @Transactional rely upon ThreadLocal variables, and ThreadLocal doesn't cope well with reactive approach.
Is there a way to avoid throwing away all good old style code and somehow get any of the benefits of the reactive approach ? A better multi-threading without callback hell approach would be enough, at least as a first step.
Thanks in advance !