【问题标题】:How to stop polling after a message is received? Spring Integration收到消息后如何停止轮询?弹簧集成
【发布时间】:2020-03-15 06:36:31
【问题描述】:

我想轮询目录中的文件并在找到文件后停止轮询。我对 Spring 框架非常陌生,其中很多仍然很混乱。在做了一些研究之后,我发现了几种方法可以做到这一点,但其中任何一种都没有运气。

其中一种方法是使用here 所示的控制总线。但是,轮询似乎只是在 2 秒后停止。我不确定如何包含仅在收到文件时停止的条件。

另一种方法是使用“智能投票”作为回答here。答案中的链接很旧,但它指向此处的官方 Spring 文档:Smart Polling。通过文章了解了AbstractMessageSourceAdviceSimpleActiveIdleMessageSourceAdvice。后者似乎适合我的目标,并且是最容易实现的,所以我决定试一试。我的代码如下:

IntegrationConfig.java

package com.example.springexample;

import java.io.File;

import org.aopalliance.aop.Advice;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.integration.annotation.InboundChannelAdapter;
import org.springframework.integration.annotation.Poller;
import org.springframework.integration.aop.SimpleActiveIdleMessageSourceAdvice;
import org.springframework.integration.channel.DirectChannel;
import org.springframework.integration.config.EnableIntegration;
import org.springframework.integration.core.MessageSource;
import org.springframework.integration.dsl.IntegrationFlow;
import org.springframework.integration.dsl.IntegrationFlows;
import org.springframework.integration.file.FileReadingMessageSource;
import org.springframework.integration.file.filters.SimplePatternFileListFilter;
import org.springframework.integration.util.DynamicPeriodicTrigger;
import org.springframework.messaging.MessageChannel;

@Configuration
@EnableIntegration
public class IntegrationConfig {

    @Bean
    public IntegrationFlow advised() {
        return IntegrationFlows.from("fileInputChannel")
                .handle("runBatchScript", "run", c -> c.advice(stopPollingAdvice()))
                .get();
    }

    @Bean
    public MessageChannel fileInputChannel() {
        return new DirectChannel();
    }

    @Bean
    @InboundChannelAdapter(value = "fileInputChannel", poller = @Poller(fixedDelay = "1000"))
    public MessageSource<File> fileReadingMessageSource() {
        FileReadingMessageSource source = new FileReadingMessageSource();
        source.setDirectory(new File("."));
        source.setFilter(new SimplePatternFileListFilter("*.bat"));
        return source;
    }

    @Bean
    public RunBatchScript runBatchScript() {
        return new RunBatchScript();
    }

    @Bean
    public Advice stopPollingAdvice() {
        DynamicPeriodicTrigger trigger = new DynamicPeriodicTrigger(10000);
        SimpleActiveIdleMessageSourceAdvice advice = new SimpleActiveIdleMessageSourceAdvice(trigger);
        advice.setActivePollPeriod(60000);
        return advice;
    }
}

RunBatchScript.java

package com.example.springexample;

import java.io.IOException;
import java.util.Date;
import java.util.logging.Logger;

public class RunBatchScript {

    Logger logger = Logger.getLogger(RunBatchScript.class.getName());

    public void run() throws IOException {
        logger.info("Running the batch script at " + new Date());
        Runtime.getRuntime().exec("cmd.exe /c simplebatchscript.bat");
        logger.info("Finished running the batch script at " + new Date());
    }
}

SpringExampleApplication.java

package com.example.springexample;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringExampleApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringExampleApplication.class, args);
    }

}

我使用thisthis 作为我的代码的基础。但是,它似乎不起作用,因为轮询器仍然每 1 秒轮询一次,而不是新的 10 秒或 60 秒。此外,我不确定如何真正停止轮询。我尝试将null 放入SimpleActiveIdleMessageSource 的构造函数中,但它只返回NullPointerException

我运行应用程序时的输出:

2020-03-15 13:57:46.081  INFO 37504 --- [ask-scheduler-1] c.example.springexample.RunBatchScript   : Running the batch script at Sun Mar 15 13:57:46 SRET 2020
2020-03-15 13:57:46.084  INFO 37504 --- [ask-scheduler-1] c.example.springexample.RunBatchScript   : Finished running the batch script at Sun Mar 15 13:57:46 SRET 2020
2020-03-15 13:57:47.085  INFO 37504 --- [ask-scheduler-2] c.example.springexample.RunBatchScript   : Running the batch script at Sun Mar 15 13:57:47 SRET 2020
2020-03-15 13:57:47.087  INFO 37504 --- [ask-scheduler-2] c.example.springexample.RunBatchScript   : Finished running the batch script at Sun Mar 15 13:57:47 SRET 2020
2020-03-15 13:57:48.089  INFO 37504 --- [ask-scheduler-1] c.example.springexample.RunBatchScript   : Running the batch script at Sun Mar 15 13:57:48 SRET 2020
2020-03-15 13:57:48.092  INFO 37504 --- [ask-scheduler-1] c.example.springexample.RunBatchScript   : Finished running the batch script at Sun Mar 15 13:57:48 SRET 2020
2020-03-15 13:57:49.093  INFO 37504 --- [ask-scheduler-3] c.example.springexample.RunBatchScript   : Running the batch script at Sun Mar 15 13:57:49 SRET 2020
2020-03-15 13:57:49.096  INFO 37504 --- [ask-scheduler-3] c.example.springexample.RunBatchScript   : Finished running the batch script at Sun Mar 15 13:57:49 SRET 2020

非常感谢您对某些代码的任何帮助。

【问题讨论】:

    标签: spring spring-integration


    【解决方案1】:

    您应该将SimpleActiveIdleMessageSourceAdvice 申请到@InboundChannelAdapter。此外,SimpleActiveIdleMessageSourceAdvice 的触发器应该与用于轮询文件的触发器相同:

        @Bean
        @EndpointId("fileInboundChannelAdapter")
        @InboundChannelAdapter(value = "fileInputChannel", poller = @Poller("fileReadingMessageSourcePollerMetadata"))
        public MessageSource<File> fileReadingMessageSource() {
            FileReadingMessageSource source = new FileReadingMessageSource();
            source.setDirectory(new File("."));
            source.setFilter(new SimplePatternFileListFilter("*.bat"));
            return source;
        }
    
        @Bean
        public PollerMetadata fileReadingMessageSourcePollerMetadata() {
            PollerMetadata meta = new PollerMetadata();
    
            DynamicPeriodicTrigger trigger = new DynamicPeriodicTrigger(1000);
    
            SimpleActiveIdleMessageSourceAdvice advice = new SimpleActiveIdleMessageSourceAdvice(trigger);
            advice.setActivePollPeriod(60000);
    
            meta.setTrigger(trigger);
            meta.setAdviceChain(List.of(advice));
            meta.setMaxMessagesPerPoll(1);
            return meta;
        }
    

    请注意SimpleActiveIdleMessageSourceAdvice只需更改下一次轮询文件。您可以将其设置为非常大的数字,例如几千年后,这可以以某种方式实现您的意图,即在您的一生中不再轮询文件。但是轮询文件的调度程序线程仍然处于活动状态。

    如果你真的想关闭这个调度器线程,你可以向控制总线发送一个关闭信号。

    首先定义一个控制总线:

        @Bean
        public IntegrationFlow controlBusFlow() {
            return IntegrationFlows.from("controlBus")
                      .controlBus()
                      .get();
        }
    

    然后实现AbstractMessageSourceAdvice,在轮询文件后向控制总线发送关闭信号:

    @Service
    public class StopPollingAdvice extends AbstractMessageSourceAdvice{
    
        @Lazy
        @Qualifier("controlBus")
        @Autowired
        private MessageChannel controlBusChannel;
    
    
        @Override
        public boolean beforeReceive(MessageSource<?> source) {
            return super.beforeReceive(source);
        }
    
        @Override
        public Message<?> afterReceive(Message<?> result, MessageSource<?> source) {
            Message operation = MessageBuilder.withPayload("@fileInboundChannelAdapter.stop()").build();
            controlBusChannel.send(operation);
            return result;
        }
    }
    

    并将轮询文件的PollerMetadata 更改为:

    @Bean
    public PollerMetadata fileReadingMessageSourcePollerMetadata(StopPollingAdvice stopPollingAdvice) {
        PollerMetadata meta = new PollerMetadata(); 
        meta.setTrigger(new PeriodicTrigger(1000));
        meta.setAdviceChain(List.of(stopPollingAdvice));
        meta.setMaxMessagesPerPoll(1);
        return meta;
    }
    

    【讨论】:

    • 感谢您的回答,因为它很有帮助。我使用了您的第二种方法,因为我实际上想停止轮询器。但是,我在afterReceive 方法中包含了条件if (result != null),这样轮询器只会在找到文件时停止,否则不会。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-02-01
    • 1970-01-01
    • 1970-01-01
    • 2019-05-27
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多