Java Spring Boot 4.1 Yrs Interview Experience

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

КОМЕНТАРІ • 40

  • @genz-career
    @genz-career  Місяць тому +3

    Complete Interview Preparation Material: topmate.io/genzcareer/930954
    Interview Preparation Kit: topmate.io/genzcareer/959954
    I would recommend you to get above Interview Preparation kit and crack any interview [99% Chance]

  • @techlearn207
    @techlearn207 29 днів тому +1

    Excellent, very helpful.

  • @Im_gpd
    @Im_gpd Місяць тому +13

    Spring does provide Annotations like @Bean, @Componet etc. it's not necessary to write beans.xml file or any config file

    • @prashantthakur9329
      @prashantthakur9329 Місяць тому

      For legacy codes it is necessary and good to know about it

  • @shahnawazali6150
    @shahnawazali6150 Місяць тому +3

    Nice video-feel with ayaan

  • @ramdevboddapu2133
    @ramdevboddapu2133 Місяць тому +2

    not sure why did they use threads for handling file uploads

  • @gaurangdongre5425
    @gaurangdongre5425 24 дні тому +1

    what is the diffrence between your 499 and 999 package?

    • @charanteja4619
      @charanteja4619 18 днів тому

      You will have two projects they almost look similiar to me structure wise. And you will have interview Q and A on them .

  • @subbu9999
    @subbu9999 16 днів тому

    Does Companies accepting 2 months notice period these days?

  • @obulareddykopparthi6691
    @obulareddykopparthi6691 Місяць тому

    To overcome the dependency injection problem,we need to create in @ configuration class

  • @akashsonar6332
    @akashsonar6332 Місяць тому +1

    Your website UI has some issues. Especially with the section where the feedback are displayed. Some text is hidden.

  • @karthik.kannan
    @karthik.kannan Місяць тому +1

    I am 2024 passedout fresher I am currently learning springBoot , can I get a job ? Is there openings for freshers ?

    • @VikashBharadwaj
      @VikashBharadwaj Місяць тому

      Yes bro apply every where

    • @karthik.kannan
      @karthik.kannan Місяць тому

      @VikashBharadwaj thank you so much for your reply bro 🥺❤️

    • @dark_techyy
      @dark_techyy Місяць тому

      Best of luck but don't just rely on springboot

    • @karthik.kannan
      @karthik.kannan Місяць тому

      @@dark_techyy other than can I know what i want to learn bro ?

    • @VikashBharadwaj
      @VikashBharadwaj Місяць тому

      @@karthik.kannan Don't worry bro go with spring boot and learn Hibernate, jpa, MySQL it's is sufficient for fresher but currently most of company ask DSA aaray or string questions and service based company they asked aptitude first round

  • @amjathkhan4723
    @amjathkhan4723 Місяць тому

    Good mock

  • @ramcharanfans5921
    @ramcharanfans5921 Місяць тому

    @autowired cause cyclic dependency

    • @sarkar_957
      @sarkar_957 Місяць тому

      Not necessarily!

    • @udaychallagulla4415
      @udaychallagulla4415 Місяць тому

      Cyclic dependency happens with Constructor dependency injection, when class A depends on class B and vice versa, because in order to achieve constructor injection dependent object should be created readily at the time of creating target bean.

    • @udaychallagulla4415
      @udaychallagulla4415 Місяць тому

      @@sarkar_957 no, circular dependency injection won't be happen with field and setter injections, because for field & setter injections no need of creating dependent bean readily.

    • @sarkar_957
      @sarkar_957 Місяць тому

      @@udaychallagulla4415 wrong again! It can happen but we can prevent it using lazy initialization, etc

    • @sarkar_957
      @sarkar_957 Місяць тому

      @@udaychallagulla4415 Wrong.
      Your statement [ field & setter injections no need of creating dependent bean readily.] is not default behavior and its wrong. Actually
      Circular dependency can still occur with field and setter injection because the Spring container still tries to resolve the dependency graph during bean initialization. However, Spring can handle some cases of circular dependencies by creating proxy objects or by delaying initialization, which can be done by lazy initialization, Interface Segregation, or manual injection.
      So you are wrong!!

  • @sriramselvam3529
    @sriramselvam3529 Місяць тому +2

    Anyone please explain. What is bean in spring boot. Why we need to use it.

    • @heathens2867
      @heathens2867 Місяць тому

      Channel name coding & concept by Shreyansh. He has explained this in his spring boot playlist

    • @NileshChopra
      @NileshChopra Місяць тому +3

      Search on yt. But in simple, an object created and managed internally by springboot is a bean.

    • @Bhawani-v8z
      @Bhawani-v8z Місяць тому +1

      Just a object who’s life cycle will managed by spring 😊

    • @sarkar_957
      @sarkar_957 Місяць тому

      Let me put in a simple way, basically the spring framework has a lot of features and configuration needs to be done before even we do something, that's where spring boot comes, it comes with configuration in ready to run application, so that we can save time alot in various ways

    • @dark_techyy
      @dark_techyy Місяць тому +3

      Arre kuch ni bhai it's just an object, but hum ise new keyword se na bnake is object ka control spring manager ko De dete hain, that's why this object is called bean to just differentiate the terminology.