Marko Mitic
Marko Mitic

Reputation: 21

Managing of users with OpenAM and springboot

How could i manage users in spring-boot application throw openAM and how could my login with every of them? I have already bind it with "Oauth2" and with client but i can not get my demo-user in backend app?

Upvotes: 0

Views: 202

Answers (1)

Bernhard Thalmayr
Bernhard Thalmayr

Reputation: 2744

Actually OpenAM does not own identity information, but builds identiy subjects (users / groups) on the fly in memory by consuming identity data from configured user data stores. No matter if you use the 'embedded' users data store or not ... that has just been an option for quicker deployment (for development and showcases). You could wither use SAMLv2 or OIDC to integrate with OpenAM and retrieve the identity information (user attributes) via SAML attributes or via OIDC claims. If you prefer OpenAM's proprietary way , you could also use JEE Agent for SSO integration in Spring Boot, but this requires some tweaking.

Upvotes: 1

Related Questions