Spring Integration – Manipulate RSS Feed Data and Write to Files

Introduction In this tutorial we will create an example on how to manipulate data from RSS Feed and write to files periodically using Spring Integration framework. This guide uses Spring Integration using Java configuration to retrieve data from RSS feed, manipulate and write to files. In this example we will create both gradle and maven based build configurations to build…

File Transfer from Source Directory to Destination Directory using File Adapter in Spring Integration

Introduction We will create Spring integration file adapter example. This example will show you how to transfer file from source directory to destination directory using file adapter in Spring integration or how to move a file from source to destination folder or how to poll a directory at an interval to move file to the destination folder. You may also…

Read File Content From Source Directory using File Adapter in Spring Integration

Introduction We will create an example to read file content from source directory using file adapter in Spring integration. This example will show you how to read file content from a particular location and log the file content into console. You may further process this file content for your business requirements. Prerequisites Eclipse 4.12, Java 8 or 12, Gradle 5.6,…

Spring Integration Hello Example

Introduction In this post we will create a simple example in Spring Integration with greeting message or hello message. Spring Integration aims to provide a clear line between code and configuration. The components provided by the framework, which often represent the enterprise integration patterns, are typically configured in a declarative way using either XML or Java annotations as metadata. We…