I have the following small file to reproduce the warning:

<?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>

This produces the warning, "Referenced bean 'org.springframework.integration.config.ServiceActivatorFactoryBean#0' not found". The "stageEventChannel" and "stageScoreUpdateService" should not be the cause of the warning, since I can reproduce it with different channels and different services in my system. In any case, the warning seems to be referring to the ServiceActivatorFactoryBean, which is not what I'm implementing.

I am using SpringSource Tool Suite 2.8.0.RELEASE.

I've searched on the forums and only found this post of a person having a very similar issue but no responses.

link|improve this question

DO you have spring-integration-core jar on your classpath? – JavaGeek Dec 10 '11 at 23:34
Yes, spring-integration-core-2.0.3.RELEASE. – jhericks Dec 11 '11 at 4:49
feedback

1 Answer

up vote 0 down vote accepted

Upgrade to Spring Integration 2.0.6+

See https://jira.springsource.org/browse/INT-2295

link|improve this answer
Thanks, I logged that issue, actually. 2.0.6 is not released, yet. I don't know what the schedule is. – jhericks Feb 2 at 1:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.