Reports XML elements deprecated in the current version of the Spring Integration XML-based application context.

For more information, see Migration Guide.

Example:


<beans ... >
   <int:channel id="failChannel"
                dispatcher="failover"/> <!-- this attribute is deprecated, use dispatcher sub-element instead -->
   <int:poller default="true">
     <int:cron-trigger  expression="5"/>  <!-- This element is removed in Spring Integration 2.1, use 'cron' attribute instead -->
     <int:interval-trigger interval="3"/> <!--  This element is removed in Spring Integration 2.1, use interval trigger attributes instead -->
  </int:poller>
  <ftp:inbound-channel-adapter session-factory="ftpSessionFactory"
                               cache-sessions="false" <!--  This attribute is deprecated, use CachingSessionFactory instead -->
                               channel="channel"/>
</beans>