Skip to content

Spring Integration 5.2 to 5.3 Migration Guide

Artem Bilan edited this page Feb 3, 2020 · 4 revisions

Table of Contents

Deprecation Removals

Most of deprecations from previous versions have been removed. It is strongly recommended to move to the replacing API. See JavaDocs for the deprecated API to determine what it is replaced in favor of.

MongoDb Driver 4.0

The spring-integration-mongodb provides now Reactive Streams channel adapter implementations based on the mongodb-driver-reactivestreams. For better end-user experience both sync and reactive drivers are optional dependencies in the spring-integration-mongodb. So, now you have to specify driver explicitly in your project:

implementation "org.springframework.integration:spring-integration-mongodb"
implementation "org.mongodb:mongodb-driver-reactivestreams"
// implementation "org.mongodb:mongodb-driver-sync"
Clone this wiki locally