spring启动邮件接收器

xienkqul  于 2021-07-12  发布在  Java
关注(0)|答案(1)|浏览(331)

嗨,我正在尝试使用spring邮件集成来读取最终用户邮箱。我用了下面的代码,它的工作很好。

@SpringBootApplication
public class ImapTestApplication {
     public static void main(String[] args) {
          SpringApplication.run(ImapTestApplication.class, args);
              ApplicationContext ac = new ClassPathXmlApplicationContext("/META-INF/gmail-imap-idle-config.xml");

            DirectChannel inputChannel = ac.getBean("receiveChannel", DirectChannel.class);
            inputChannel.subscribe(new MessageHandler() {
                public void handleMessage(Message<?> message) throws MessagingException {
                    System.out.println("===================================");
                    System.out.println("Message: " + message);
                    System.out.println("===================================");
                }
            });
    }

以及我的xml配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
        http://www.springframework.org/schema/integration/mail http://www.springframework.org/schema/integration/mail/spring-integration-mail.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"
    xmlns:int="http://www.springframework.org/schema/integration"
    xmlns:int-mail="http://www.springframework.org/schema/integration/mail"
    xmlns:util="http://www.springframework.org/schema/util">

    <int:channel id="receiveChannel" />
    <!-- replace 'userid and 'password' with the real values -->
    <int-mail:imap-idle-channel-adapter id="customAdapter"
            store-uri="imaps://mailaddress:password@host:993/inbox"
            channel="receiveChannel"
            auto-startup="true"
            should-delete-messages="false"
            should-mark-messages-as-read="false"
            java-mail-properties="javaMailProperties"/>

    <util:properties id="javaMailProperties">
        <prop key="mail.imap.socketFactory.class">javax.net.ssl.SSLSocketFactory</prop>
        <prop key="mail.imap.socketFactory.fallback">false</prop>
        <prop key="mail.store.protocol">imaps</prop>
        <prop key="mail.imaps.auth">true</prop>
        <prop key="mail.debug">false</prop>
    </util:properties>

</beans>

在我的应用程序中,我的数据库中有100多个用户的邮箱信息。所以我需要如何从我的数据库配置。而且在运行时,如果用户更改邮件设置(如密码更改),也应该执行我的邮件接收器,我尝试使用spring集成javadsl实现,但是我不能使用用户邮件数据库中的imap设置。

ilmyapht

ilmyapht1#

使用xml配置确实没有简单的方法可以做到这一点。
举个例子:https://github.com/spring-projects/spring-integration-samples/tree/master/advanced/dynamic-ftp
为每个客户创建一个新的应用程序上下文。
有了javadsl及其动态流特性,煮一些东西就容易多了 IntegrationFlow 从运行时的任意代码。
您还可以将它们Map到那些用户,以便在属性更改时能够销毁和创建新的用户。
在文档中查看更多信息:https://docs.spring.io/spring-integration/docs/5.3.2.release/reference/html/dsl.html#java-dsl运行时流

相关问题