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'
ReactiveMongoTemplate
is required by application reactive repositories by default.MongoTemplate
is used by thespring-cache-mongodb
But they cannot be used together, any suggestions for how to use spring-cache-mongodb
with reactive Mongo data.