Hi, i was trying to convert our existing servlet-b...
# spring
t
Hi, i was trying to convert our existing servlet-based spring-controllers to a reactive style. I removed the dependency on spring-boot-starter-web eand replaced it with webflux, also i added corotuoutines (core + reactor) to the dependencies. I was thinking i could now make all controller methods `suspend`able. But in fact spring still complains "Unsupported suspending handler method detected". What am i missing? or an i wrong thinking i can decalre controller methiods
suspend
?