DEV Community

Discussion on: From Spring Boot to Micronaut

Collapse
 
rjaros profile image
Robert Jaros

I'd love to see more info about migrating Spring WebFlux and Kotlin coroutines.

Collapse
 
jofisaes profile image
João Esperancinha

Try my repo on GitHub: github.com/jesperancinha/virtual-t...

Collapse
 
nfrankel profile image
Nicolas Fränkel

Did you by chance miss my previous post?

Collapse
 
rjaros profile image
Robert Jaros

No. But I meant migrating from WebFlux with coroutines to Micronaut :-)

Collapse
 
jofisaes profile image
João Esperancinha • Edited

I saw your article. It is quite small. How is it related to the dangling bridge on the image? Reactive with WebFlux and coroutines isn't just a matter of one library. This is because Flux are "translated" into Flow. The suspend keyword doesn't do everything in WebFlux with coroutines. Only for non-collection types. It may work with collections, but underwater, it will work just like a blocking operation per element and the list is "treated" like a single object.