Talk about guys! Do you happen to have any materia...
# spring
j
Talk about guys! Do you happen to have any material on the differences between Spring and Ktor? Please
b
Spring is more full featured. Has both blocking and async apis. Also, has much more legacy to navigate.
☝️ 1
r
On the topic of async APIs, Ktor has 'native' support for Kotlin Coroutines; you can use coroutines with Spring, however, it's through the bridge of Project Reactor which makes the experience more difficult (massive stack traces that obscure issues, requires you to understand and use Mono/Flux when interacting with parts of Spring, etc.)