1
votes

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?

1
I suggest a read of the reference guide. - M. Deinum

1 Answers

1
votes

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