내가 경고 재현하기 위해 다음과 같은 작은 파일이 :이 경고 "참조 된 콩 '을 생산나는 스프링 소스 ToolSuite (이클립스) 내 봄 콩 구성 파일에이 경고를 제거하려면 어떻게
<?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>
을 org.springframework.integration.config.ServiceActivatorFactoryBean # 0 '을 찾을 수 없습니다. " "stageEventChannel"및 "stageScoreUpdateService"는 경고의 원인이되어서는 안됩니다. 시스템의 다른 채널 및 다른 서비스로 재생산 할 수 있기 때문입니다. 어떤 경우이든, 경고는 ServiceActivatorFactoryBean을 참조하는 것으로 보이는데, 이는 제가 구현하고있는 것이 아닙니다.
저는 SpringSource Tool Suite 2.8.0.RELEASE를 사용하고 있습니다.
포럼에서 검색 한 결과 매우 비슷한 문제는 있지만 답변이없는 사람은 this post 인 것으로 나타났습니다. 봄 통합 2.0.6+
에
이
참조하십시오 마십시오 클래스 패스에 스프링 통합 코어 항아리가? – Mick
예, spring-integration-core-2.0.3.RELEASE. – jhericks