1

警告を再現するために、次の小さなファイルがあります。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:int="http://www.springframework.org/schema/integration"
    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-2.0.xsd">

    <int:service-activator input-channel="stageEventChannel"
        ref="stageScoreUpdateService" method="receiveEvent" />

</beans>

これにより、「参照されたBean'org.springframework.integration.config.ServiceActivatorFactoryBean#0'が見つかりません」という警告が生成されます。「stageEventChannel」と「stageScoreUpdateService」は、システム内のさまざまなチャネルとさまざまなサービスで再現できるため、警告の原因にはなりません。いずれにせよ、警告はServiceActivatorFactoryBeanを参照しているようですが、これは私が実装しているものではありません。

SpringSource ToolSuite2.8.0.RELEASEを使用しています。

フォーラムを検索したところ、非常によく似た問題を抱えているが応答がない人のこの投稿のみが見つかりました。

4

1 に答える 1

0

Spring Integration 2.0.6+ へのアップグレード

https://jira.springsource.org/browse/INT-2295を参照

于 2012-02-01T13:32:44.297 に答える