使用Spring与Java配置集成接收邮件

时间:2016-09-20 08:01:16

标签: java spring spring-integration dsl

我想收到Spring Integration的邮件。我在xml配置中找到了很多例子,但我没有找到任何Java DSL配置。如何使用Java DSL编写以下xml配置?

<int-mail:inbound-channel-adapter id="imapAdapter"
      store-uri="imaps://[username]:[password]@imap.gmail.com/INBOX"
      channel="receiveChannel"
      should-delete-messages="true">
      <int:poller max-messages-per-poll="1" fixed-rate="5000"/>
</int-mail:inbound-channel-adapter>

我已经尝试了以下解决方案,但我不知道如何添加轮询器。

@Bean
public IntegrationFlow mailListener() {
    return IntegrationFlows.from(Mail.imapInboundAdapter("imaps://[username]:[password]@imap.gmail.com/INBOX").shouldDeleteMessages(true).get())
            .<Message>handle((payload, header) -> logMail(payload))
            .get();
}

1 个答案:

答案 0 :(得分:4)

请参阅DSL reference

@Bean
public IntegrationFlow mailListener() {
    return IntegrationFlows.from(Mail.imapInboundAdapter("imaps://[username]:[password]@imap.gmail.com/INBOX")
             .shouldDeleteMessages(true).get(), 
             e -> e.poller(Pollers.fixedRate(5000).maxMessagesPerPoll(1)))
        .<Message>handle((payload, header) -> logMail(payload))
        .get();
}