spring-integration-dsl:使Feed-Flow工作

时间:2016-08-22 20:10:44

标签: rss spring-integration spring-dsl

我尝试使用一组配置的RSS-feeds对RSS-feed阅读器进行编码。我认为一个好的方法是通过编写原型来解决这个问题 - @Bean并使用配置中找到的每个RSS-feed来调用它。

但是,我猜我在应用程序启动时错过了一点,但没有任何反应。我的意思是豆是按照我的期望创建的,但是handle()方法中没有记录日志:

@Component
public class HomeServerRunner implements ApplicationRunner {

    private static final Logger logger = LoggerFactory.getLogger(HomeServerRunner.class);

    @Autowired
    private Configuration configuration;

    @Autowired
    private FeedConfigurator feedConfigurator;

    @Override
    public void run(ApplicationArguments args) throws Exception {
        List<IntegrationFlow> feedFlows = configuration.getRssFeeds()
            .entrySet()
            .stream()
            .peek(entry -> System.out.println(entry.getKey()))
            .map(entry -> feedConfigurator.feedFlow(entry.getKey(), entry.getValue()))
            .collect(Collectors.toList());
        // this one appears in the log-file and looks good
        logger.info("Flows: " + feedFlows);
    }

}

@Configuration
public class FeedConfigurator {

    private static final Logger logger = LoggerFactory.getLogger(FeedConfigurator.class);

    @Bean
    @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
    public IntegrationFlow feedFlow(String name, FeedConfiguration configuration) {
        return IntegrationFlows
                .from(Feed
                        .inboundAdapter(configuration.getSource(), getElementName(name, "adapter"))
                        .feedFetcher(new HttpClientFeedFetcher()),
                        spec -> spec.poller(Pollers.fixedRate(configuration.getInterval())))
                .channel(MessageChannels.direct(getElementName(name, "in")))
                .enrichHeaders(spec -> spec.header("feedSource", configuration))
                .channel(getElementName(name, "handle"))
        //
        // it would be nice if the following would show something:
        //
                .handle(m -> logger.debug("Payload: " + m.getPayload()))
                .get();
    }

    private String getElementName(String name, String postfix) {
        name = "feedChannel" + StringUtils.capitalize(name);
        if (!StringUtils.isEmpty(postfix)) {
            name += "." + postfix;
        }
        return name;
    }

}

这里缺少什么?似乎我需要&#34;开始&#34;以某种方式流动。

1 个答案:

答案 0 :(得分:0)

原型bean需要在某处“使用” - 如果你在任何地方没有引用它,就不会创建任何实例。

此外,您不能在该范围内放置IntegrationFlow @Bean - 它会在内部生成一堆不在该范围内的bean。

有关可用于创建具有不同属性的多个适配器的一种技术,请参阅答案to this questionits follow-up

或者,即将到来的1.2 version of the DSL有一种动态注册流的机制。