Spring cache mongodb with Reactive mongo autoconfigure

407 Views Asked by At

I am trying to use spring-cache-mongodb as a cache in my reactive spring application. The problem are the 2 depenndencies

implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-mongodb-reactive', version: '2.4.3'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-mongodb', version: '2.4.3'
  1. ReactiveMongoTemplate is required by application reactive repositories by default.
  2. MongoTemplate is used by the spring-cache-mongodb

But they cannot be used together, any suggestions for how to use spring-cache-mongodb with reactive Mongo data.

0

There are 0 best solutions below