Spring Boot MicroServices Course : Securing MicroServices using Spring Security OAuth2

preview_player
Показать описание
Join this channel to get access to the perks:

#sivalabs #java #spring #springboot #springcloud #microservices #restapi #rabbitmq #testing #junit #junit5 #maven #testcontainers #docker #kubernetes

In this video, you will learn:
► How to implement OAUth 2 Security for microservices using Spring Security OAuth 2
► How to use Keycloak as OAuth2 Authentication Server
► How to test Secured REST APIs using KeycloakContainer
► How to test Secured REST APIs using MockMvc and OAuth2MockUser
► How to configure Swagger Documentation with OAuth Login

❤️ Thanks for watching

References
=============================================

Connect with Me
=============================================

Must Watch Videos
=============================================

Popular Series Playlists
=============================================

⭐ Tags ⭐
best spring tutorials, best spring boot tutorials, how to learn spring boot, mastering spring boot, complete java testing course, java testing best practices, how to build spring boot rest API, spring cloud tutorials, spring boot docker tutorial, spring boot kubernetes tutorial, how to become proficient in java, how to learn spring boot quickly, how to learn spring boot in-depth
Рекомендации по теме
Комментарии
Автор

Thanks for the video! Many things to keep in mind when setting up security for microservices. Learned a lot!

azdanov
Автор

Another way is to implement a ClientHttpRequestInterceptor or ClientHttpRequestInitializer and pass it to the RestClient. Inside the new class then can set the bearer header.

azdanov
Автор

Hi Siva. Why does your IDE look so cool? Is it the standard theme for IntelliJ IDEA Ultimate? And can I copy that theme on IDEA Community as well? I really want that layout!

igatmatthew
Автор

Hi Shiva, Similar to Keycloak is it possible to retain DB data as well? I mean to preserve order and catalog data once created in the DB, thanks

sakthinivas
Автор

Great content!

In the intro you explaining what the roles are of the api gateway and microservice in relation with the auth server.
What if you validate the token via the api gateway, is it still necessary to validate it also via the microservice?
If you validate the token with the api gateway then the microservices are not secure right, like what if I make a direct request to a microservice then there is no token validation.

aaabe