I'm a newbie to Spring Reactive Modules. What I got is basically, at its core it enable reactive programming and we can develop end to end reactive service.
But, suppose I just want to make my controller as Async, so that I can do work on multiple threads and send a reply like "Task Started" (not particularly this) and have my work going on and close the HTTP link.
I also got to know about @EnableAsync and @Async to make a method Async.
What if I just use @Async above my controller method that I want to make async. It worked but, is this a good practice? And can we use this in production codes?
@Asyncon controller methods... There are better ways to get async processing in a way that integrates with the async capabilities of the servlet container.