Implementing Spring Config Client Microservices | Reading Configurations from Github

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

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

  • @stream.abhimanyu
    @stream.abhimanyu 5 месяцев назад

    really thank you from me(abhimanyu). You explained clearly with example.

  • @itspurelypassionate
    @itspurelypassionate 7 месяцев назад

    Hey, thank you! I could not find any good implementation video but this was in-depth and it helped me solve errors! Thanks!

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

    Do we really need a config server app to fetch the config properties?

    • @the_codealchemist
      @the_codealchemist  23 дня назад

      Hey, not really if your app is small or config changes are not frequent or you have an alternate way of reading those configs say by making a rest call or some custom IO ops or any other solution.
      In this context, having a config server allows us to scale, xentralize and standardize the config related operations like dynamic refresh and so on.

    • @Orisha001
      @Orisha001 22 дня назад

      @@the_codealchemist what i mean is that, do you need it running locally. Can't the client app fetch it straight from the server itself without relying on another client?

  • @armendochandra9169
    @armendochandra9169 10 месяцев назад

    sir i want to ask i got error cause the code cannot resolve placeholder 'message' in value "${message};"

    • @the_codealchemist
      @the_codealchemist  10 месяцев назад

      Hi, it looks like you're trying to use a property which is not defined anywhere in the project. Try to follow the previous videos in the same playlist, could be a miss from my end..maybe I'm using a property in this video which was created in one of the previous videos.