Тёмный

Most Asked Java, Spring Boot, M's Interview question for 5+ years experienced in 2023 | Code Decode 

Code Decode
Подписаться 136 тыс.
Просмотров 87 тыс.
50% 1

In this video of code decode for 5+ years experienced most asked java spring boot microservice hibernate interview questions for 5 years in 2023
Udemy Course link : www.udemy.com/...
Can we use HashMap in a multi-threaded environment?
You can use the HashMap for query services (in CQRS Microservices Design pattern ) but the probability of working fine depends on the way we use it. For instance, consider the HashMap of configuration properties, if the HashMap initialization / modification was done by using just one thread, and the remaining threads do the task of reading from the map, then HashMap would work perfectly well.
The problem arises when there is concurrent update on Hash Map. Hence, during such scenarios, we can use the HashTable or ConcurrentHashMap
Is there any difference in defining or creating a String by using String literal and by using the new() operator?
Creating string using the new operator ensures that the String is created in the heap and into the string pool both.
Whereas, creating string using literal ensures that the string is created in the string pool.
String pool exists as part of the heap.
This ensures that the multiple Strings created using literal having same values are pointed to one object and prevents duplicate objects with the same value from being created
What do you know about Factory Design Pattern in Java?
Factory design pattern is the most commonly used pattern in Java.
They belong to Creational Patterns because it provides means of creating an object of different instances.
What are the Spring Boot Starters?
Spring Boot Starters are a set of pre-configured dependencies that can be easily included in your project to quickly get started with common features or technologies.
Spring boot starter is a maven template that contains a collection of all the relevant transitive dependencies that are needed to start a particular functionality.
Like we need to import spring-boot-starter-web dependency for creating a web application.
What is Spring Boot Actuator?
Spring Boot Actuator is a set of features that provide monitoring and management capabilities for your Spring Boot application.
Actuator endpoints expose information about your application, such as health status, metrics, and environment variables, that can be used to monitor and manage your application.
The profile names can also be passed in via a JVM system parameter. These profiles will be activated during application startup:
-Dspring.profiles.active=dev
Whats AOP
Aspect Oriented Programming (AOP) is a programming paradigm aiming to segregate cross-cutting functionalities, such as logging, from business logic in an application
Aspect - Aspect is a class in which we define Pointcuts and Advices.
Advice - It’s the behavior that addresses system-wide concerns (logging, security checks, etc…). This behavior is represented by a method to be executed at a JoinPoint. This behavior can be executed Before, After, or Around the JoinPoint according to the Advice type as we will see later.
Pointcut - A Pointcut is an expression that defines at what JoinPoints a given Advice should be applied.
JoinPoint - Simply put, a JoinPoint is a point in the execution flow of a method where an Aspect (new behavior) can be plugged in.
How can you access a value defined in the application? What is properties file in Spring Boot?
Use the @Value annotation to access the properties which is defined in the application - properties file.
Swagger 2 is an open-source service provided in Spring Boot which makes it easier for the machines to find out the structure of APIs like RESTful Web services.
Most Asked Core Java Interview Questions and Answers: • Core Java frequently a...
Advance Java Interview Questions and Answers: • Advance Java Interview...
Java 8 Interview Questions and Answers: • Java 8 Interview Quest...
Hibernate Interview Questions and Answers:
• Hibernate Interview Qu...
Spring Boot Interview Questions and Answers:
• Advance Java Interview...
Angular Playlist: • Angular Course Introdu...
SQL Playlist: • SQL Interview Question...
GIT: • GIT
Subscriber and Follow Code Decode
Subscriber Code Decode: www.youtube.co...
LinkedIn: / codedecodeyoutube
Instagram: / codedecode25
#java #interviewquestions #codedecode

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 146   
@MrGoodLuck
@MrGoodLuck Год назад
Just wondering how did u collect this all questions ,a month back I had an interview and all the questions they asked are from this video 😅but unfortunately I couldn’t watch this video that time ..btw great work 😍please make more videos for experienced java developers where they ask specific example from the projects 😅
@CodeDecode
@CodeDecode Год назад
Spent enough time in IT now as interviewer . We know how it works😝. But thanks for your feed back that these are still a fresh question set. It will help others👍
@somyakumari3238
@somyakumari3238 4 месяца назад
How many years experience and which company?
@sarojsahoo8763
@sarojsahoo8763 Год назад
WebClinet Supports Async communication as well
@nowakadam7731
@nowakadam7731 4 месяца назад
new String operator create object in heap and in string pool. It isn't false? Doesn't it only create object in heap?
@CodeDecode
@CodeDecode 4 месяца назад
Blogs are divided on this concepts. Some days in both, some says only in heap.
@jakkalapavithra2734
@jakkalapavithra2734 Год назад
Desperately I need this, thanks for posting, also can you please make video on, how we will maintain session from one microservice to another microservice while calling through rest template? Very much needed answer mam? Similarly how we are maintaining transaction from one microservice to another microservice?
@CodeDecode
@CodeDecode Год назад
We already have both answered. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Fe_qPM81hJ8.html
@ACseries_2023
@ACseries_2023 Год назад
Please make video on 7+ years exp for Java Developer (micro service)
@CodeDecode
@CodeDecode Год назад
Sure👍👍
@geetanjalikulkarni4716
@geetanjalikulkarni4716 6 месяцев назад
Pls add 10+ exp interview questions
@CodeDecode
@CodeDecode 6 месяцев назад
Sure we will create it soon
@akshayengineer2018
@akshayengineer2018 Год назад
Thank you so much mam 🙏☺️😊... Currently I am going through lots of interviews & this same questions companies are asking... Each & every questions I have received in different different companies interview... Can i get yours LinkedIn Profile link ?
@CodeDecode
@CodeDecode Год назад
Agreed even after so many years we have such questions repetitively
@thrivikramm4038
@thrivikramm4038 9 дней назад
a good time saver for brush up.
@CodeDecode
@CodeDecode 5 дней назад
Thanks
@ruchitade7196
@ruchitade7196 Год назад
very nice content. More Questions for Java, spring boot, REST, SQL 5+ exp would be very much appriciated.
@CodeDecode
@CodeDecode Год назад
Sure Ruchita 👍👍
@kottesravanthi6399
@kottesravanthi6399 Год назад
Thank you So much mam. Today I have selected in one company. I got a clear idea what to prepare for the interviews by following your videos. Eventhough i have three years of career break i got selected. Your videos helped me a lot. Your explaination is very good mam. If i feel any topic is difficult and definately it will becomes easy after listen to your video on that perticular topic. Thank you so much......
@CodeDecode
@CodeDecode Год назад
Thank you! We are glad that we could help. Congratulations on your new job, and all the best for your future endeavors!
@uvanana.
@uvanana. Год назад
What and all concepts and questions they are asking
@uvanana.
@uvanana. Год назад
Hii @kottesravanthi6399
@AutoExciteHub
@AutoExciteHub 8 месяцев назад
Pacakage?
@kritikharkwal2441
@kritikharkwal2441 2 месяца назад
Ylpllll
@drumstick_farming
@drumstick_farming Год назад
Plz make a tutorial on how to implement spring security end to end (line by line code) with Oauth2 and bcrypt
@CodeDecode
@CodeDecode Год назад
Sure
@nidhimanav311
@nidhimanav311 Год назад
Please make interview questions for architect level
@CodeDecode
@CodeDecode Год назад
Sure we will create it soon
@JitendraKumar-zs2ws
@JitendraKumar-zs2ws 2 месяца назад
I want give the on this platform once i study full
@ramyal5371
@ramyal5371 Год назад
Could you please explain how security is handled in Microservices. It's most asked questions. Need in detail video on it. It would be great help team.
@CodeDecode
@CodeDecode Год назад
Spring Security Interview Questions and Answers with Live Demo: ru-vid.com/group/PLyHJZXNdCXseGWynh6MlMrC_CmV0dR8mF
@hridikasaha9519
@hridikasaha9519 Год назад
Great explanation. Please make video on some coding questions also. Thank you.
@CodeDecode
@CodeDecode Год назад
Sure 👍👍
@kalyanichalamalasetty7725
@kalyanichalamalasetty7725 10 месяцев назад
could you please share spring boot interview questions vedio for 7+ years expericence
@CodeDecode
@CodeDecode 10 месяцев назад
sure we will create it soon
@butte_boergoat_Volgs
@butte_boergoat_Volgs 6 месяцев назад
how i will get all interview question answer pdf
@krishnalakshmi8896
@krishnalakshmi8896 Год назад
Can make a video for interview questions for 16+ years in Java. I am looking for architecture level interview questions.
@CodeDecode
@CodeDecode Год назад
Sure 👍👍
@SrinivasPalepu-f3m
@SrinivasPalepu-f3m Год назад
Thank you so much for your videos, But your going very fast , And my request is to glow slowly
@CodeDecode
@CodeDecode Год назад
Sure sure will try to reduce the pace 👍👍
@prashantshetty27
@prashantshetty27 Год назад
I was thinking of this the whole day and see I got the notification 😂 Thank you 🙏
@CodeDecode
@CodeDecode Год назад
🙂😊👍👍
@chiragrathod4757
@chiragrathod4757 Год назад
Thank you for sharing this video, Can you please share interview questions video for 7+ years of experience
@CodeDecode
@CodeDecode Год назад
Sure 👍👍
@KamalaaBalamuraliK
@KamalaaBalamuraliK Год назад
Hi Team, please kindly provide Scenario based Interview questions for 7+ years of experience. I will be waiting for your video. I am actualy a fan of your voice, the way the explanation is provided is awesome. But still I need how the Interviewer will be asking coding based questions also in the interview. Please help me and many people like me..
@CodeDecode
@CodeDecode 11 месяцев назад
Sure We will create one soon 👍
@sundaraV-k8l
@sundaraV-k8l 9 месяцев назад
Hi Team, can you please prepare video for 9years experience also.
@CodeDecode
@CodeDecode 9 месяцев назад
😊 sure
@modern_mirror
@modern_mirror Год назад
Hi, I have a query. I have 10000+ entries in an excel sheet. How do I read those and once processed mark as processed for each record.
@CodeDecode
@CodeDecode Год назад
We prefer batch processing for such scenarios
@modern_mirror
@modern_mirror Год назад
@@CodeDecode can you make a video on that too? Please
@sarannav365
@sarannav365 3 месяца назад
Love the content. Please do more videos on interview questions..
@CodeDecode
@CodeDecode 3 месяца назад
Thanks sure 👍
@shubhamsinghrana9262
@shubhamsinghrana9262 Год назад
Will they be asked from 1+ year of exp. Also?
@CodeDecode
@CodeDecode Год назад
If you are unlucky enough to get strict interviewer then might be
@rishabhshukla521
@rishabhshukla521 10 месяцев назад
Thanks for the great explanation 😊
@CodeDecode
@CodeDecode 10 месяцев назад
you're welcome
@sagardarade
@sagardarade 5 месяцев назад
Keep it up
@CodeDecode
@CodeDecode 5 месяцев назад
Thanks
@pranjalkatyayan5752
@pranjalkatyayan5752 Год назад
Yes We want For 7+ and 9+ and may be Part 2 for 5+ Years Looking Forward For Videos
@CodeDecode
@CodeDecode Год назад
Sure Pranjal 👍👍
@sallytkhilaishvili2549
@sallytkhilaishvili2549 7 месяцев назад
Nice content, thanks for detail explanation
@CodeDecode
@CodeDecode 7 месяцев назад
You’re welcome
@thranduillord001
@thranduillord001 Год назад
AFAIK, when you create String object using new, you need to explicitly call intern to add it to pool
@okaberintarou5020
@okaberintarou5020 Год назад
This is the correct answer.
@subhadipde619
@subhadipde619 Год назад
thanks for the video . Please make video on 7+ exp and 9+exp as well
@CodeDecode
@CodeDecode Год назад
Thanks 🙂🙂
@muhassinmusthafa3379
@muhassinmusthafa3379 Год назад
Thanks for ur support... Expecting more interview questions.. Can you pls upload a detailed explanation of basic hashing, hashing algorithm and new changes recently introduced in hashing if any
@CodeDecode
@CodeDecode Год назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-7k0VYHuUF6g.html
@CodeDecode
@CodeDecode Год назад
Is this what you need?
@prakharbhavsar8814
@prakharbhavsar8814 Год назад
Thank you so much mam. I got offer letter because of you.
@CodeDecode
@CodeDecode Год назад
Many many congratulations Prakhar 💐💐🎉🎉 wish you many more success in your life Man. Keep learning keep shining 🌟🌟🌟🌟
@sreeni4344
@sreeni4344 Год назад
Create more videos on Spring boot ,Hibernate and JPA
@CodeDecode
@CodeDecode Год назад
Sure you will see more videos on this topics soon
@parakhrakhee1
@parakhrakhee1 8 месяцев назад
Thank you for great video and explanation. Can you please share link for 7+ experience?
@sarojsahoo8763
@sarojsahoo8763 Год назад
We can also use Synchronized version of hashmap
@CodeDecode
@CodeDecode Год назад
That's slow and low on performance side bcz of single thread execution
@vivithamtp3763
@vivithamtp3763 Год назад
Your videos helps me do better in each interview ❤ i have improved alot!!!! thank you so much 🙏😊
@CodeDecode
@CodeDecode Год назад
Many congratulations in clearing interviews 🎉🎉 keep learning keep shining 🌟🌟😀
@ravirajpradhan4720
@ravirajpradhan4720 Год назад
Awesome...... speechless explained & containt also very perfect
@CodeDecode
@CodeDecode Год назад
Thanks Ravi 🙂👍
@ramyal5371
@ramyal5371 Год назад
Appreciated your effort team.. In most of the compnies interviewer asking scenario based questions on Hashmaps . For ex : if bucket is empty nd if we try to insert key for that bucket will it execute equals method or not. What happens if we insert same key Nd mny more.. Could you please come up with such scenario based questions
@CodeDecode
@CodeDecode Год назад
Sure 😊👍
@sumanreddy5094
@sumanreddy5094 Год назад
need some AWS interview questions mam...
@CodeDecode
@CodeDecode Год назад
Sure we will create it soon
@anubhutidoshi8999
@anubhutidoshi8999 Год назад
can you please create a video for 10+ years of experience
@CodeDecode
@CodeDecode Год назад
Sure 👍👍
@gayatrideshpande5456
@gayatrideshpande5456 8 месяцев назад
Please add 10+ years experience video
@CodeDecode
@CodeDecode 8 месяцев назад
Sure we will create it soon
@ramakrishna2838
@ramakrishna2838 Год назад
Please do coding questions asking in interview
@CodeDecode
@CodeDecode Год назад
Sure we will create it soon
@mayankjain2979
@mayankjain2979 Год назад
Please create some videos 9+ year experience.
@CodeDecode
@CodeDecode Год назад
Sure mayank 👍😊
@conea6891
@conea6891 10 месяцев назад
1. 00:41 2. 02:37 3. 04:17 4. 05:59 5. 07:02 6. 09:12 7. 10:03 8. 12:06
@CodeDecode
@CodeDecode 10 месяцев назад
👍
@ayushkumarsone4401
@ayushkumarsone4401 Год назад
Hello Mam, I have one questions m Curcyuit breaker has three states Open , Half open and CLosed So any one microservice which is down so it will get up or get repaired automatically after using circuit breaker ? Please answer , Thank you , You are making content more than best 🙏
@charanshelby2396
@charanshelby2396 Год назад
You are task is done have fun😂
@CodeDecode
@CodeDecode Год назад
😜😊
@Sri_Gayatri_1
@Sri_Gayatri_1 Год назад
Yes mam coding questions video cheyadii
@CodeDecode
@CodeDecode Год назад
Sure 👍👍
@pothulamanoj99
@pothulamanoj99 Год назад
Please make videos for 8+ exp
@CodeDecode
@CodeDecode Год назад
Sure 👍
@uvanana.
@uvanana. Год назад
Thanks 🙏🎉
@CodeDecode
@CodeDecode Год назад
❤️❤️
@o7n71a0453
@o7n71a0453 Год назад
Please do 7+ and include some more on system designs
@CodeDecode
@CodeDecode Год назад
Sure👍👍
@rokib_ru_cse
@rokib_ru_cse Год назад
i want to talk with this mam, can i get her linkedin?
@CodeDecode
@CodeDecode Год назад
www.linkedin.com/in/codedecodeyoutube
@rokib_ru_cse
@rokib_ru_cse Год назад
@@CodeDecode i already sent u connection request in linkedin but yet u didn't accept.... but i want this mam linkedin id.
@49_37
@49_37 Год назад
Appreciated your effort Mam 👍❤
@CodeDecode
@CodeDecode Год назад
Thanks 😊👍
@MdJunaid-cx3sy
@MdJunaid-cx3sy Год назад
"tum bhaut mast kaam karta hai maksood bhai"
@CodeDecode
@CodeDecode Год назад
😝😝👍👍
@kesavakonanki1892
@kesavakonanki1892 Год назад
Please more videos on 12+
@CodeDecode
@CodeDecode Год назад
Sure we will create it soon
@GirishBisane-d4f
@GirishBisane-d4f 6 месяцев назад
Perfect . Loved entire series.
@CodeDecode
@CodeDecode 6 месяцев назад
Thanks
@pravaskumar7078
@pravaskumar7078 Год назад
Awesome nice set of questions answered discussion Very well explained 🙏🙏
@CodeDecode
@CodeDecode Год назад
Thanks Pravas 😊👍
@geetanjalikulkarni4716
@geetanjalikulkarni4716 6 месяцев назад
Looking for scenario based questions tooo. ❤
@KuchNahiBasAiseHi
@KuchNahiBasAiseHi 6 месяцев назад
Awesome content.
@CodeDecode
@CodeDecode 6 месяцев назад
Thanks
@prathyushamovva5718
@prathyushamovva5718 10 месяцев назад
Please create 7+ years questions also
@CodeDecode
@CodeDecode 10 месяцев назад
Sure we will create it soon
@mdumarreza3072
@mdumarreza3072 Год назад
Ma'am please make videos series on Devops Engineer interview questions and answers
@vishalbharat2801
@vishalbharat2801 Год назад
How to learn data structure and algorithm..please make video on it as well.
@priyankasundar3497
@priyankasundar3497 Год назад
Need for 7 years
@CodeDecode
@CodeDecode Год назад
Sure we will create it soon
@humaafreen4002
@humaafreen4002 Год назад
thanks a lot mam☺☺☺
@CodeDecode
@CodeDecode Год назад
You're welcome
@swathibommideni154
@swathibommideni154 Год назад
Please do coding questions asked in 2023
@CodeDecode
@CodeDecode Год назад
Sure Swathi 👍
@nenuanenenuane6645
@nenuanenenuane6645 Год назад
Hii please do vedios on react js
@shashavalijava9
@shashavalijava9 Год назад
Thanks madam
@CodeDecode
@CodeDecode Год назад
You’re welcome
@SandeepAS-ov3fk
@SandeepAS-ov3fk Год назад
beautiful.
@CodeDecode
@CodeDecode Год назад
Thanks Sandeep 🙂👍
@sharadsingh2856
@sharadsingh2856 Год назад
Awesome
@CodeDecode
@CodeDecode Год назад
Thanks
@puspakdas7675
@puspakdas7675 Год назад
😍
@CodeDecode
@CodeDecode Год назад
😊😊
@iDeveloper92
@iDeveloper92 Год назад
Excellent content!
@CodeDecode
@CodeDecode Год назад
Thanks
@rishiraj2548
@rishiraj2548 Год назад
🙏👍👍
@CodeDecode
@CodeDecode Год назад
🙂🙂
@start1learn-n171
@start1learn-n171 7 месяцев назад
Tq
Далее
Top 50 spring boot annotation ?
24:33
Просмотров 1,6 тыс.
Java Spring Boot 5 Years Experience Interview
33:15
Просмотров 13 тыс.