Implementing Spring Config Client Microservices | Reading Configurations from Github

Поділитися
Вставка
  • Опубліковано 24 січ 2025

КОМЕНТАРІ • 9

  • @stream.abhimanyu
    @stream.abhimanyu 5 місяців тому

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

  • @itspurelypassionate
    @itspurelypassionate 6 місяців тому

    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 20 днів тому

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

    • @the_codealchemist
      @the_codealchemist  13 днів тому

      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 11 днів тому

      @@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  9 місяців тому

      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.