Spring boot: Dynamically Initialized Beans | Value Annotation

Поделиться
HTML-код
  • Опубликовано: 28 июн 2024
  • ➡️ Notes link: Shared in the Member Community Post (If you are Member of this channel, then pls check the Member community post, i have shared the Notes link there)
    ➡️ Join this channel to get access to member only perks:
    / @conceptandcoding

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

  • @raviravi-gg5ck
    @raviravi-gg5ck Месяц назад +8

    Please dont stop this spring Boot series, upload videos regularly

  • @suhailahmad3340
    @suhailahmad3340 Месяц назад +5

    sir can you please give some range of time in which or how much time still it will take to complete the springboot playlist
    thank you for taking time from ur busy schedule . i would have take some other channel from this onwards but i am in flow now as we can recall what u taught previously that is really helping a lot
    kindly give a time range when it is get complete please sir !!!!!!
    thank you for the videos

  • @lingaraj1231
    @lingaraj1231 Месяц назад +2

    thank you for all the amazing videos you've been creating!

  • @harshgarg0906
    @harshgarg0906 Месяц назад +1

    Thank you Shrayansh for making the video on this

  • @saurabhkashyap6625
    @saurabhkashyap6625 Месяц назад +2

    Thank you bhaiya. Very helpful🎉

  • @BRIJKISHOREDUTTBCE
    @BRIJKISHOREDUTTBCE Месяц назад +3

    Bahut BAAP padhate ho Shrayansh.

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

    I am very thankful to you, I really need this

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

    I'm going to watch this soon

  • @VivekMishra-ob8yf
    @VivekMishra-ob8yf Месяц назад +2

    I think second approach is not dynamic because you are kind of hard coding the order type value in your properties file, we want our application at runtime to determine what kind of order it is and then call the respective service, not just having a particular order type service in our IOC container.

  • @abhijeetbasfore6816
    @abhijeetbasfore6816 Месяц назад +1

    Informative.

  • @_respectOP
    @_respectOP Месяц назад +1

    Waiting for the next video ❤

  • @sahulraj9536
    @sahulraj9536 Месяц назад +3

    Hey shreyansh,can you give me an approximate month by which all the spring boot topics in your roadmap will be uploaded

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

    Please make videos on spring security as well

  • @baburaomulaparthi4531
    @baburaomulaparthi4531 Месяц назад +1

    Thanks for explaining
    Can u plz make vedio on spring boot @transactional annotation

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

      hey shrayansh, this is must pick pls plan it

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

    Hi shrayansh, please don't stop this series... Waiting a lot...

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

      i will work tomm on notes making. expect video only on weekends buddy. Sorry for that

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

    This can be resolved by strategy design pattern also.

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

    In the 2nd approach, would it not take the application to restart once properties have been changed? Would that be a disadvantage of this approach? We can't determine the type of order during the request. 1st one does.

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

    Hi Shreyansh , can you please fixed timeline when the whole playlist will be finished

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

    waiting and waiting a lot sir..... for more videos of this series

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

    Sir, when are you going to upload your next video?

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

    Very good series. Please upload videos in regular intervals.

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

    Can you make a video on schedular in spring boot to send 1000 of email and explain how to handle the exception while scheduling

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

    first of all , thanks for video and one request sir can u suggest one good project requirement ..apart form these usual projects like( library ,school management , insta clone youtube clone ) I mean what do you see in a project in resume to say that it is a good one . Please reply !

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

    Sir please upload videos more frequently they are the best..
    Thanks

  • @anubhavsingh2916
    @anubhavsingh2916 11 дней назад

    What if I want to change in application properties at run time?

  • @ashishjaiswal4207
    @ashishjaiswal4207 12 дней назад

    Hi shrayansh, why we can't create object on after getting object. So, it will save some memory.

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

    Make videos for cloud computing as well

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

    Hi shreyansh ,it would be great if you can make a video on Spring Integration for parallel api calls

  • @Ankitkumar-kb7st
    @Ankitkumar-kb7st Месяц назад

    Can anyone please provide me a notes link?

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

    Hi Shreyansh,can you please upload the video on how to dynamically load all classes during runtime in java 18.I have searched everything but didn't find any solutions for this.Thanks in advance.😊

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

    Why you stopped the series continue it please

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

    Sir when you are going to upload next video

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

    What if you have 5 different implementation of Order class.

    • @nabarunnandy556
      @nabarunnandy556 14 дней назад

      In the order interface keep a function call returnOrderType. And in each implementation keep a class variable orderType and set value of orderType like ONLINE or OFFLINE. The returnOrderType method would return this class variable. Now in the caller class declare a Map and use @Autowired on List. Then in a @PostConstruct method fill up the Map with orderType (String) and its corresponding class (Order) by iterating the List which has all the implementation of Order interface. When you get the order type value from user, use it as key to fetch corresponding order implementation class from the map.

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

    sir pls cupload in udemy business sir, also some videos in lld,hld,java are missing in udemy business pls help sir

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

      hi buddy for uploading to business i need 30+ reviews currently there are not much reviews on spring boot course

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

      Java videos in RUclips and udemy are same right. All topics videos are there in udemy also right or any videos missing?

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

      @@venkatakalyan4953 same

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

      @@ConceptandCoding have you provided notes /slides on udemy for java and lld cources.Please reply.

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

      Please reply