Spring Integration 2.1 deprecations
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>- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
SpringIntegrationDeprecations21
You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:
//noinspection SpringIntegrationDeprecations21note
Actual comment syntax will depend on the code language you are working with
More detailed instructions as well as other ways and options that you have can be found in the product documentation:
Inspection Details | |
|---|---|
By default bundled with: |