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

Поделиться
HTML-код
  • Опубликовано: 5 июн 2023
  • 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/course/master-s...
    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: ruclips.net/user/CodeDecode?...
    LinkedIn: / codedecodeyoutube
    Instagram: / codedecode25
    #java #interviewquestions #codedecode

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

  • @MrGoodLuck
    @MrGoodLuck 10 месяцев назад +12

    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  10 месяцев назад +3

      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 2 месяца назад

      How many years experience and which company?

  • @sarojsahoo8763
    @sarojsahoo8763 Год назад +8

    WebClinet Supports Async communication as well

  • @vivithamtp3763
    @vivithamtp3763 Год назад +3

    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 🌟🌟😀

  • @ruchitade7196
    @ruchitade7196 Год назад +3

    very nice content. More Questions for Java, spring boot, REST, SQL 5+ exp would be very much appriciated.

  • @pravaskumar7078
    @pravaskumar7078 Год назад +1

    Awesome nice set of questions answered discussion
    Very well explained 🙏🙏

  • @ravirajpradhan4720
    @ravirajpradhan4720 Год назад +1

    Awesome...... speechless explained & containt also very perfect

  • @iDeveloper92
    @iDeveloper92 Год назад +1

    Excellent content!

  • @uvanana.
    @uvanana. Год назад +2

    Thanks 🙏🎉

  • @hridikasaha9519
    @hridikasaha9519 Год назад +2

    Great explanation. Please make video on some coding questions also. Thank you.

  • @prashantshetty27
    @prashantshetty27 Год назад +2

    I was thinking of this the whole day and see I got the notification 😂
    Thank you 🙏

  • @jakkalapavithra2734
    @jakkalapavithra2734 Год назад +3

    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.
      ruclips.net/video/Fe_qPM81hJ8/видео.html

  • @vishalbharat2801
    @vishalbharat2801 Год назад

    How to learn data structure and algorithm..please make video on it as well.

  • @kottesravanthi6399
    @kottesravanthi6399 Год назад +13

    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  Год назад +1

      Thank you! We are glad that we could help. Congratulations on your new job, and all the best for your future endeavors!

    • @uvanana.
      @uvanana. 11 месяцев назад

      What and all concepts and questions they are asking

    • @uvanana.
      @uvanana. 11 месяцев назад

      Hii @kottesravanthi6399

    • @AutoExciteHub
      @AutoExciteHub 6 месяцев назад

      Pacakage?

    • @kritikharkwal2441
      @kritikharkwal2441 17 дней назад

      Ylpllll

  • @49_37
    @49_37 Год назад +1

    Appreciated your effort Mam 👍❤

  • @mdumarreza3072
    @mdumarreza3072 Год назад

    Ma'am please make videos series on Devops Engineer interview questions and answers

  • @muhassinmusthafa3379
    @muhassinmusthafa3379 10 месяцев назад +1

    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  10 месяцев назад

      ruclips.net/video/7k0VYHuUF6g/видео.html

    • @CodeDecode
      @CodeDecode  10 месяцев назад

      Is this what you need?

  • @subhadipde619
    @subhadipde619 Год назад +1

    thanks for the video . Please make video on 7+ exp and 9+exp as well

  • @sharadsingh2856
    @sharadsingh2856 Год назад +1

    Awesome

  • @parakhrakhee1
    @parakhrakhee1 6 месяцев назад

    Thank you for great video and explanation. Can you please share link for 7+ experience?

  • @ramyal5371
    @ramyal5371 Год назад +1

    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

  • @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 🙏

  • @ramyal5371
    @ramyal5371 Год назад +3

    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  Год назад +1

      Spring Security Interview Questions and Answers with Live Demo: ruclips.net/p/PLyHJZXNdCXseGWynh6MlMrC_CmV0dR8mF

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

    Love the content. Please do more videos on interview questions..

  • @chiragrathod4757
    @chiragrathod4757 Год назад +1

    Thank you for sharing this video,
    Can you please share interview questions video for 7+ years of experience

  • @drumstick_farming
    @drumstick_farming Год назад +2

    Plz make a tutorial on how to implement spring security end to end (line by line code) with Oauth2 and bcrypt

  • @rishabhshukla521
    @rishabhshukla521 7 месяцев назад +1

    Thanks for the great explanation 😊

  • @user-tf8rc7wp9r
    @user-tf8rc7wp9r 4 месяца назад +1

    Perfect . Loved entire series.

  • @SandeepAS-ov3fk
    @SandeepAS-ov3fk Год назад +1

    beautiful.

  • @shashavalijava9
    @shashavalijava9 Год назад +1

    Thanks madam

  • @geetanjalikulkarni4716
    @geetanjalikulkarni4716 4 месяца назад

    Looking for scenario based questions tooo. ❤

  • @pranjalkatyayan5752
    @pranjalkatyayan5752 Год назад +1

    Yes We want For 7+ and 9+ and may be Part 2 for 5+ Years
    Looking Forward For Videos

  • @KamalaaBalamuraliK
    @KamalaaBalamuraliK 9 месяцев назад +1

    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  9 месяцев назад

      Sure We will create one soon 👍

  • @thranduillord001
    @thranduillord001 Год назад +1

    AFAIK, when you create String object using new, you need to explicitly call intern to add it to pool

  • @humaafreen4002
    @humaafreen4002 Год назад +1

    thanks a lot mam☺☺☺

  • @sallytkhilaishvili2549
    @sallytkhilaishvili2549 5 месяцев назад +1

    Nice content, thanks for detail explanation

  • @KuchNahiBasAiseHi
    @KuchNahiBasAiseHi 4 месяца назад +1

    Awesome content.

  • @sreeni4344
    @sreeni4344 Год назад +1

    Create more videos on Spring boot ,Hibernate and JPA

    • @CodeDecode
      @CodeDecode  Год назад

      Sure you will see more videos on this topics soon

  • @start1learn-n171
    @start1learn-n171 5 месяцев назад

    Tq

  • @prakharbhavsar8814
    @prakharbhavsar8814 Год назад +1

    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 🌟🌟🌟🌟

  • @ACseries_2023
    @ACseries_2023 Год назад +3

    Please make video on 7+ years exp for Java Developer (micro service)

  • @o7n71a0453
    @o7n71a0453 Год назад +1

    Please do 7+ and include some more on system designs

  • @user-dl1cg8dw1e
    @user-dl1cg8dw1e 11 месяцев назад +1

    Thank you so much for your videos,
    But your going very fast , And my request is to glow slowly

    • @CodeDecode
      @CodeDecode  11 месяцев назад

      Sure sure will try to reduce the pace 👍👍

  • @nenuanenenuane6645
    @nenuanenenuane6645 Год назад

    Hii please do vedios on react js

  • @krishnalakshmi8896
    @krishnalakshmi8896 Год назад +1

    Can make a video for interview questions for 16+ years in Java. I am looking for architecture level interview questions.

  • @akshayengineer2018
    @akshayengineer2018 Год назад +10

    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  Год назад +1

      Agreed even after so many years we have such questions repetitively

  • @nowakadam7731
    @nowakadam7731 2 месяца назад +1

    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  2 месяца назад

      Blogs are divided on this concepts. Some days in both, some says only in heap.

  • @Sri_Gayatri_1
    @Sri_Gayatri_1 Год назад +1

    Yes mam coding questions video cheyadii

  • @JitendraKumar-zs2ws
    @JitendraKumar-zs2ws 18 дней назад

    I want give the on this platform once i study full

  • @sagardarade
    @sagardarade 3 месяца назад +1

    Keep it up

  • @sarojsahoo8763
    @sarojsahoo8763 Год назад +1

    We can also use Synchronized version of hashmap

    • @CodeDecode
      @CodeDecode  Год назад

      That's slow and low on performance side bcz of single thread execution

  • @modern_mirror
    @modern_mirror 10 месяцев назад +1

    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  10 месяцев назад

      We prefer batch processing for such scenarios

    • @modern_mirror
      @modern_mirror 10 месяцев назад

      @@CodeDecode can you make a video on that too? Please

  • @nidhimanav311
    @nidhimanav311 Год назад +1

    Please make interview questions for architect level

  • @user-ht1iv5mu3i
    @user-ht1iv5mu3i 7 месяцев назад +1

    Hi Team, can you please prepare video for 9years experience also.

  • @ramakrishna2838
    @ramakrishna2838 Год назад +1

    Please do coding questions asking in interview

  • @shubhamsinghrana9262
    @shubhamsinghrana9262 11 месяцев назад +1

    Will they be asked from 1+ year of exp. Also?

    • @CodeDecode
      @CodeDecode  11 месяцев назад

      If you are unlucky enough to get strict interviewer then might be

  • @kalyanichalamalasetty7725
    @kalyanichalamalasetty7725 8 месяцев назад +1

    could you please share spring boot interview questions vedio for 7+ years expericence

    • @CodeDecode
      @CodeDecode  8 месяцев назад

      sure we will create it soon

  • @butte_boergoat_Volgs
    @butte_boergoat_Volgs 4 месяца назад

    how i will get all interview question answer pdf

  • @sumanreddy5094
    @sumanreddy5094 Год назад +1

    need some AWS interview questions mam...

  • @mayankjain2979
    @mayankjain2979 Год назад +1

    Please create some videos 9+ year experience.

  • @gayatrideshpande5456
    @gayatrideshpande5456 6 месяцев назад +1

    Please add 10+ years experience video

    • @CodeDecode
      @CodeDecode  6 месяцев назад

      Sure we will create it soon

  • @rishiraj2548
    @rishiraj2548 Год назад +1

    🙏👍👍

  • @kesavakonanki1892
    @kesavakonanki1892 Год назад +1

    Please more videos on 12+

  • @geetanjalikulkarni4716
    @geetanjalikulkarni4716 4 месяца назад +1

    Pls add 10+ exp interview questions

    • @CodeDecode
      @CodeDecode  4 месяца назад

      Sure we will create it soon

  • @anubhutidoshi8999
    @anubhutidoshi8999 Год назад +1

    can you please create a video for 10+ years of experience

  • @MdJunaid-cx3sy
    @MdJunaid-cx3sy 10 месяцев назад +1

    "tum bhaut mast kaam karta hai maksood bhai"

  • @pothulamanoj99
    @pothulamanoj99 Год назад +1

    Please make videos for 8+ exp

  • @puspakdas7675
    @puspakdas7675 11 месяцев назад +1

    😍

  • @swathibommideni154
    @swathibommideni154 Год назад +8

    Please do coding questions asked in 2023

  • @prathyushamovva5718
    @prathyushamovva5718 8 месяцев назад +1

    Please create 7+ years questions also

    • @CodeDecode
      @CodeDecode  8 месяцев назад

      Sure we will create it soon

  • @charanshelby2396
    @charanshelby2396 11 месяцев назад +1

    You are task is done have fun😂

  • @priyankasundar3497
    @priyankasundar3497 Год назад +1

    Need for 7 years

    • @CodeDecode
      @CodeDecode  Год назад +1

      Sure we will create it soon

  • @rokib_ru_cse
    @rokib_ru_cse Год назад +1

    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.

  • @conea6891
    @conea6891 8 месяцев назад +1

    1. 00:41
    2. 02:37
    3. 04:17
    4. 05:59
    5. 07:02
    6. 09:12
    7. 10:03
    8. 12:06