I am using Spring Integration Java DSL v. 1.2.2 and following some examples I try to write a code to poll a folder
return IntegrationFlows
.from(Files.inboundAdapter(new File("/tmp/foo")))
.handle((p, h) -> fileProcessor.process(p))
.get();
This code can not be compiled because
"Cannot resolve method 'from(org.springframework.integration.dsl.
file.FileInboundChannelAdapterSpec)'"
How this can be fixed and how fixed-interval polling can be added?