Quick Refresh : Spring Integration Framework
What is Spring Integration? Spring Integration is a lightweight messaging solution that will add integration capabilities to your Spring application. As a messaging strategy, it provides a way of sharing information quickly and with a high level of decoupling between involved components or applications. we will learn how to accomplish this while Spring handles any low-level infrastructure concern. This will allow you to focus on your business logic. Currently, Spring Integration configuration is mainly xml based, although some annotations are starting to be included. Examples shown in this tutorial will also be xml based, though I will show its respective annotation when possible. Having explained that, a question arises: what can you do with Spring Integration? The framework basically allows you to do the following: It allows communication between components within your application, based on in-memory messaging. This allows these application components to be loosely coupled with each ...