Search code examples
springspring-bootreactive-programmingspring-webfluxembedded-database

Is there any Spring Boot Data Reactive Starter targeting an embedded data store?


I'm learning the ropes of Spring WebFlux with Spring Boot, by developing small demo applications.

Correct me if I'm wrong, but the only Spring Boot Data Starters that are Reactive are the following:

  • Cassandra
  • Couchbase
  • MongoDB
  • Redis

Is there an option to use an embedded NoSQL store for development, like it's usually done with H2 for JPA?


Solution

  • As I Understand you are looking for a NoSQL database that can be embedded in your application

    you can use MongoDB as an embedded database please see the following link :

    spring boot with embedded mongo

    embedded MongoDB

    I hope that will be helpful for you