XML ベースの Spring Integration アプリケーションコンテキストの現在のバージョンでは非推奨とされている XML 要素を報告します。

詳細は、移行ガイドを参照してください。

例:


<beans ... >
   <int:channel id="failChannel"
                dispatcher="failover"/> <!-- この属性は非推奨です。代わりに dispatcher のサブ要素を使用してください -->
   <int:poller default="true">
     <int:cron-trigger  expression="5"/>  <!-- この要素は Spring Integration 2.1 では除去されています。代わりに 'cron' 属性を使用してください -->
     <int:interval-trigger interval="3"/> <!--  この要素は Spring Integration 2.1 では除去されています。代わりに interval-trigger 属性を使用してください -->
  </int:poller>
  <ftp:inbound-channel-adapter session-factory="ftpSessionFactory"
                               cache-sessions="false" <!--  This attribute is deprecated, use CachingSessionFactory instead -->
                               channel="channel"/>
</beans>