Tobia
Tobia

Reputation: 18811

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:

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

Answers (1)

Aryan
Aryan

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

embedded MongoDB

I hope that will be helpful for you

Upvotes: 1

Related Questions