Arun Abraham
Arun Abraham

Reputation: 91

Spring boot microservice with OAuth 2 and JWT for Security

I am developing a Spring boot application for payment using microservices, which will be consumed by mobile application and web application.

1) Users need to be authenticated for accessing the mobile app

2) Third party mobile apps using my services need to be authenticated (with my app)

3) Web applications using my services need to be authenticated.

My user details will be there in DB or LDAP. I have plans for integrating IBM API management and the deployment will be in on-premise servers. Based on this requirement how I need to design and implement my solution?

After going through different blogs I am confused now. So a proper guidance will be very helpful for me.

Upvotes: 0

Views: 1839

Answers (1)

Christophe Roussy
Christophe Roussy

Reputation: 17049

Your question is a bit vague or too broad, but ... Using LDAP does not scale well, consider using NoSQL alternatives as those are closer to the principles of microservices. See:

Upvotes: 1

Related Questions