The example provided [here](https://docs.spring.io/spring-data/mongodb/docs/current/reference/html/#mongo.transactions.reactive-tx-manager) is outdated and it should be updated. If someone can point to the github location I can raise a PR as well. Example should be as below ``` @Configuration public class Configuration extends AbstractReactiveMongoConfiguration { @Value("${spring.data.mongodb.database}") private String databaseName; @Bean ReactiveMongoTransactionManager transactionManager(ReactiveMongoDatabaseFactory factory) { return new ReactiveMongoTransactionManager(factory); } @Override protected String getDatabaseName() { return this.databaseName; } } ```