Spring warning integration. Link bean 'org.springframework.scheduling.support.PeriodicTrigger # 0' not found "

I use Spring Integration 4.0.0.M4 in my project, and in my Spring-integration.xml I use:

<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" /> 

I have a warning: "Bean link" org.springframework.scheduling.support.PeriodicTrigger # 0 "not found" and "Bean link" org.springframework.integration.channel.interceptor.WireTap # 0 'not found ". So, I missed something.This is just a warning, but I would like to know how to fix it.

{Edited:} enter image description here

+2
source share
1 answer

The indicated problem is fixed in STS 3.7.0. See JIRA for more details.

0
source

Source: https://habr.com/ru/post/983578/


All Articles