...

/

Suitability, Testing, and Conclusions

Suitability, Testing, and Conclusions

Conclude this course with a holistic view of the pros and cons of shifting to Spring WebFlux.

We'll cover the following...

Suitability

You should evaluate if a full reactive stack fits your case. Do you require SQL queries to complete your web response? Bad news: reactive support for relational databases are still in a very early stage.

Look also at the client’s side. Can your web clients switch to a reactive approach? If the answer is no, then the list of advantages you’ll get becomes smaller.

Testing

Writing unit and integration tests for reactive streams with WebFlux might be tricky. The  ...