User Authentication Service | Security for Microservices using Springboot and OAuth2 - Part 2

Поделиться
HTML-код
  • Опубликовано: 28 окт 2024

Комментарии • 5

  • @카라멜땅콩-p2p
    @카라멜땅콩-p2p 4 месяца назад

    so good content

  • @krubzzz
    @krubzzz Месяц назад

    How do you manage user details updates, for instance, if a user wants to update his password? Which service has the responsibility of persisting the new values? To which service does the gateway forward this request?

    • @CodeWithAnish
      @CodeWithAnish  Месяц назад

      Thanks for the question.. In this tutorial we discussed only the options to SignIn and Login using username/password. Currently I have not provided the functionality to update the password. But if required we can create an endpoint here github.com/microservice-oauth-security/user-authentication-service/tree/master/src/main/java/org/codewithanish/controller and implement a service layer to update the password. This service layer can in turn call github.com/microservice-oauth-security/user-authentication-service/blob/master/src/main/java/org/codewithanish/repository/UserDetailRepository.java to update this password in the database.

  • @TestTest-no2gy
    @TestTest-no2gy 5 месяцев назад

    Nice content. If you don't mind can you share source with me?

    • @CodeWithAnish
      @CodeWithAnish  5 месяцев назад

      Yes sure, as seen in the technical design, I have two more modules to be completed (microservice and frontend).. once completed i will provide the the completed source code in description..