Reputation: 18811
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:
Is there an option to use an embedded NoSQL store for development, like it's usually done with H2 for JPA?
Upvotes: 1
Views: 190
Reputation: 56
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
I hope that will be helpful for you
Upvotes: 1