Gero
Gero

Reputation: 13553

Spring Boot Stormpath Database

I have just come accross stormpath and I would like to test it with Spring Boot. I am developing a web application with Spring MVC. Do I need a database for storing all the user data? where are the users stored?

Upvotes: 2

Views: 146

Answers (1)

afitnerd
afitnerd

Reputation: 736

Actually, no. You don't need a database to store the user data. It's stored at Stormpath and you interact with your user data via the Stormpath API.

The Spring Boot integration makes it very easy to work with Stormpath.

In the Java SDK project, there's a tutorial section that starts you with the most basic Spring Boot app and walks you through to integrating with Stormpath using the full breadth of Spring Security roles and permissions constructs.

There's lots of good information in the docs here as well.

Full disclosure: I work for Stormpath.

Best,

Micah

Upvotes: 4

Related Questions