An open API service indexing awesome lists of open source software.

https://github.com/iainporter/spring-file-poller

A simple spring boot application that demonstrates file polling using the Spring Integration DSL
https://github.com/iainporter/spring-file-poller

dsl file polling spring-boot-application spring-integration

Last synced: 9 months ago
JSON representation

A simple spring boot application that demonstrates file polling using the Spring Integration DSL

Awesome Lists containing this project

README

          

A simple Spring Boot application that demonstrates how to set up File polling using the Spring Integration DSL and how to test it

The application consists of an Integration flow that polls a directory for files that match a given regex expression.

On finding a file it is transformed to a String and passed to a message handling flow that writes it out to another directory.

The EIP Flow

![EIP diagram](images/File_Poller.png?raw=true)

It can be used as an entry point to a bigger application.

The tests show best practices for testing such a component.

See blog post: [File Polling made easy with Spring Integration DSL](https://medium.com/@changeant/file-poller-with-spring-integration-dsl-ecb7bc996ba5)

To build it:

```$code
> mvn clean install
```

To run it:
```$code

> mvn spring-boot:run
```