The garbage collector (GC) does not typically collect Spring singleton beans. Spring manages the lifecycle of singleton beans, holding a reference to them within the application context. As long as the application context is active, these beans remain reachable, preventing the GC from reclaiming their memory. Only when the application context is destroyed, the singleton beans become eligible for garbage collection, assuming there are no other references to them.
@gouri69506 ай бұрын
Code decode is always my favourite. 1st time i saw you mam. Ur my confidence booster n i learned more from you. Lots of love.
@CodeDecode6 ай бұрын
Thanks Gouri. Keep learning keep shining 🌟🌟
@boyapallinarasimhareddy9594 ай бұрын
The way you asking the questions woth smile is so nice
@soumyaranjanpanda81946 ай бұрын
Tq So Much CodeDecode. Boz of ur Spring and Spring Boot videos, i have able to prepared for the interview in the shorter time and cleared the interview also. Tq you Mam once again 🙌
@CodeDecode6 ай бұрын
Many many congratulations on clearing your interviews 👍👍 keep learning keep shining 🌟🌟
@Sachin-je7ue6 ай бұрын
for your counter ques : map can work without terminal operation.As you called a method printMe this is a normal method not a Function (functional interface) which map expects that's why it will give you a compile error.
@aishurajas25075 ай бұрын
excellent interview.. candidate has good knowledge. thanks for sharing
@CodeDecode5 ай бұрын
Thanks
@Cancodeo4 ай бұрын
Thank you soo much, you are like angels to us. You are doing god's work. Please keep doing it!
@anandgaikwad6085 ай бұрын
Awesome candidate knowledge when compare to 4+years of experience
@nishith8926 ай бұрын
This was very helpful. Please come up with more mock interviews for senior positions.
@Glblub6 ай бұрын
Mam you are so knowledgeable really
@CodeDecode6 ай бұрын
Just the experience!! Nothing else
@rohanchowdary85116 ай бұрын
Hello Madam, please make a video on jwt using Rs256 and JCA if possible, thanks for the video
@veerapavakumarbandiАй бұрын
Nice, candidate is good at java and hibernate
@rajasah75736 ай бұрын
Great !!
@CodeDecode6 ай бұрын
Thanks
@shivakumarkondooru13876 ай бұрын
map only expect function but A::print is not function its method reference it will throw compilation error. Correct me if I am wrong.
@rishiraj25486 ай бұрын
Good day greetings 💯🙏🏻👍🏻
@sufiyanKhan-wn9wq3 ай бұрын
Nice guy❤
@CodeDecode3 ай бұрын
Thanks
@raj0064 ай бұрын
Why most channels are interviewing spring boot while many companies are using Spring reactive(webflux)
@kailashkhapane69916 ай бұрын
nice....so helpful...
@CodeDecode6 ай бұрын
👍👍
@harshitsachdeva48366 ай бұрын
Bring more videos like that
@CodeDecode6 ай бұрын
Sure we will create more videos
@VickyKumar-xo6mp6 ай бұрын
Please give more code to solve, this is useful for me too also. Thanks
@pegeb9876 ай бұрын
Great
@CodeDecode6 ай бұрын
Thanks 👍
@kirangajul67825 ай бұрын
I should pay for this content.
@CodeDecode5 ай бұрын
This is our way to pay back to IT community 😊 let's collaborate and do something for community 😊😊
@amarthyaseshu6834 ай бұрын
👌
@Treewithfruits5 ай бұрын
Super
@CodeDecode5 ай бұрын
Thanks 😊
@shaktiman60284 ай бұрын
Apka awaj bhout sunder he mam
@kirangajul67825 ай бұрын
If Class A and B require the bean of Class C, and all of them are autowired and Class A is done with the task will class B be able to access class C bean? The answer candidate has given is correct mam, as by default all beans are singlton and the instance is available throughout the program until the application context shuts down.