我在我的项目中使用Spring-integration 4.0.0.M4,在我的spring-integration.xml中,我使用:
<int:channel id="messages" >
<int:queue />
<int:interceptors>
<int:wire-tap channel="logger" />
</int:interceptors>
</int:channel>
<int:service-activator id="myService"
input-channel="messages" output-channel="nullChannel" ref="processor"
method="processNotif">
<int:poller task-executor="pool" fixed-rate="10" error-channel="errorChannel" max-messages-per-poll="1" />
</int:service-activator>
<task:executor id="pool" pool-size="5-25" queue-capacity="20" rejection-policy="DISCARD_OLDEST"
keep-alive="120" />
我有警告:&#34;引用的bean&#39; org.springframework.scheduling.support.PeriodicTrigger#0&#39;找不到&#34;和&#34;引用的bean&#39; org.springframework.integration.channel.interceptor.WireTap#0&#39;找不到&#34;。这是否意味着我错过了什么。 这只是一个警告,但我想知道如何解决这个问题。
{编辑:}