0

構成済みの RSS フィードのセットを使用して RSS フィード リーダーをコーディングしようとしています。良いアプローチは、prototype をコーディングすることでそれを解決し@Bean、構成で見つかった各 RSS フィードでそれを呼び出すことだと思いました。

ただし、アプリケーションの起動時にここでポイントを逃していると思いますが、何も起こりません。つまり、Bean は期待どおりに作成されますが、その方法ではログが記録されません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;
    }

}

ここに何が欠けていますか?どうにかしてフローを「開始」する必要があるようです。

4

1 に答える 1

0

プロトタイプ Bean はどこかで「使用」する必要があります。どこにも参照がない場合、インスタンスは作成されません。

さらに、そのスコープに を入れることはできませんIntegrationFlow @Bean。そのスコープにない一連の Bean を内部的に生成します。

異なるプロパティを持つ複数のアダプターを作成するために使用できる 1 つの手法については、この質問への回答とそのフォローアップを参照してください。

あるいは、次の DSL の 1.2 バージョンには、フローを動的に登録するメカニズムがあります。

于 2016-08-22T20:20:44.877 に答える