-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Spring Integration 6.2 to 6.3 Migration Guide
Artem Bilan edited this page Jan 30, 2024
·
3 revisions
- Removal of deprecated API
- AMQP
delaymessage property as long - Removal of
spring-integration-securitymodules
The previously @Deprecated(forRemoval = true) API has been removed.
The MessageProperties.delay is now expected to be of long type.
Therefore AmqpHeaders.DELAY header must be set as long.
See https://github.com/spring-projects/spring-amqp/issues/2602 for more information.
Previously deprecated spring-integration-security modules has been remove in favor of SecurityContextChannelInterceptor & SecurityContextPropagationChannelInterceptor from the spring-security-messaging module of Spring Security project.
Use implementation 'org.springframework.security:spring-security-messaging' dependency instead.