i have a typical spring-webmvc application (with REST request mapped in Controller's method that call a Service's method) and I would like to use spring-integration to manage the asynchronous functionality (e.g. mail, sms, notification...).
For example i would like that a Service Component after insert in my DB publish a message in spring-integration context channel in asycn mode so that the control return immediataly at the Controller to return an http response to the client.
How to integrate "spring-integration" in my existing spring-mvc application?