Polling from file using Java DSL - compile error when adding Files.inboundAdapter
问题 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? 回答1: Not clear what's going on in your IDE, but