Spring Boot Roadmap - How To Master Spring Boot

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ธ.ค. 2024

ความคิดเห็น • 393

  • @sharidass1408
    @sharidass1408 3 ปีที่แล้ว +137

    You are the best Trainer on Java so far in my experience. Yes we need Oath 2 course from you. Keep rocking. Big Fan

    • @lifeofaproblemsolver479
      @lifeofaproblemsolver479 หลายเดือนก่อน

      Read the Spring Authorization Server docs and then you are set :), along with Redis, some database, user logins, and basic OAuth documentation from the opensource site.

  • @alexanderrjakhov6301
    @alexanderrjakhov6301 3 ปีที่แล้ว +18

    Hello from Russia. Thank you very much for this video! I have been working with the spring framework for only one month, and your roadmap to spring boot is very useful for us - the new generation of java programmers

  • @TheAbhishekh
    @TheAbhishekh 5 หลายเดือนก่อน +2

    00:03 Reading the documentation is crucial for mastering Spring Boot.
    02:08 Documentation is crucial for software frameworks like Spring Boot.
    04:24 Spring Boot simplifies building microservices and promotes testing.
    06:29 Choose SQL for better understanding and foundational knowledge in database concepts.
    08:53 Spring Data JPA simplifies database interactions.
    11:08 Importance of backend and microservices in Spring Boot
    13:19 Connect to external APIs and Docker/Kubernetes importance
    15:26 Managing configuration and secrets in Spring Boot

  • @AshrafMMA
    @AshrafMMA 3 ปีที่แล้ว +10

    Exactly what I have been looking for a while.

  • @abdo-ar-888
    @abdo-ar-888 2 ปีที่แล้ว +137

    I have an idea for you, why you don't make a full course from scratch based in this road map this will be very very cool and useful

    • @عبدالصمد-ح4ت
      @عبدالصمد-ح4ت ปีที่แล้ว +9

      He needs money

    • @mohdotnet
      @mohdotnet ปีที่แล้ว +1

      Fantastic idea . I second that suggestion

    • @hackerman5764
      @hackerman5764 ปีที่แล้ว +9

      that course would be 48+ hours long and maybe not even he has mastered every part of this roadmap

    • @abdo-ar-888
      @abdo-ar-888 ปีที่แล้ว

      @@hackerman5764 it's not really an issue if it's about timing, and anyway it'll definitely be a professional course so I don't think it'll be for free

    • @alexradu1921
      @alexradu1921 11 หลายเดือนก่อน

      @@hackerman5764 and who would even complete such a long course

  • @alaminalif8276
    @alaminalif8276 3 ปีที่แล้ว +19

    OAuth2, please. By all means. Another great content. Thank you

  • @amigoscode
    @amigoscode  3 ปีที่แล้ว +4

    Courses and the diagram available here: amigoscode.com/p/roadmap

    • @aaijo
      @aaijo 2 ปีที่แล้ว

      Hi Nelson, thank you for all your great work, it's really helpful!
      Is there a way to download the roadmap as PDF? It seems coggle usually has this option, but it's not in your diagram. Also print to pdf returns only blank pages.
      I'd like to print out the diagram to track my progress and keep being reminded of the bigger picture ;)

    • @IgorTrono
      @IgorTrono 6 หลายเดือนก่อน

      it shows "error page" when I clicked on this URL.

  • @nukeman444
    @nukeman444 ปีที่แล้ว

    You are a Beast. I left Java Websphere and JSP/DB2 in favor of the C# Microsoft stack of technologies 15 years ago. I'm thinking of coming back home. That roadmap is awesome.

  • @jonathankee1400
    @jonathankee1400 3 ปีที่แล้ว +1

    You a very influential person, introducing spring boot and java to more people, your videos really bootstrap my web application, thank you very much!

  • @quantum598
    @quantum598 3 ปีที่แล้ว +5

    Nelson, you're the GOAT, your videos/tutorials + courses are an immense treasure to us early career people! Been following since your Sterling (Bank?) days (Recall the day in the life of a Software Engineer video being the first I've watched! )

  • @ravenmantilla
    @ravenmantilla 3 ปีที่แล้ว +26

    Great video. In your grapg you missed Spring Cache, AOP, those arey key for a complete Spring-based solution.

  • @LomaDaLux
    @LomaDaLux 3 ปีที่แล้ว +9

    We are DEFINITELY interested in the AuthO course!

  • @mareksz6525
    @mareksz6525 3 ปีที่แล้ว +7

    You bring so much value to the world. Thank you Nelson!

  • @JonasKeil
    @JonasKeil 3 ปีที่แล้ว +10

    The roadmaps clarity and structure shows your deep understanding of java✨

  • @iceman4895
    @iceman4895 3 ปีที่แล้ว

    Honestly, the best channel on SpringBoot .

  • @d.2968
    @d.2968 3 ปีที่แล้ว +6

    Great! Do you plan something about Spring Batch ? Thank you so much!

  • @FabrizioBeccaceci
    @FabrizioBeccaceci 3 ปีที่แล้ว +140

    I would be really interest in a more detailed comparison between Jpa with hibernate and jdbc, I would like to better understand why you don’t recommend it in bigger projects. If anyone has any resources about this topic it’s appreciate too

    • @jericho7989
      @jericho7989 3 ปีที่แล้ว +6

      I want to know it also our company has millions of data but still uses hibernate spring data jpa + criteria query

    • @erickjhormanromero6905
      @erickjhormanromero6905 3 ปีที่แล้ว +14

      Jpa is the specification with some rules to work with database, hibernate is an implemetation of the rules, it'll allow to convert your tables in java classes and jdbc is the normal java
      Java Database Connectivity that define how clients connects to database using more specific sql native.

    • @SimplyRusty
      @SimplyRusty 3 ปีที่แล้ว +4

      @@erickjhormanromero6905 yeah he asked about spring data jpa though as OG mentioned data jpa used in small project

    • @Gabriel-rl3lg
      @Gabriel-rl3lg 3 ปีที่แล้ว +12

      JDBC is just the driver, it's the bridge between the database and your application, with JPA you have Hibernate managing database connections and you can improve your development speed, because you can map your class properties with some java annotations to tell Hibernate correlate them with properties in tables on the database, this is what we call a ORM (object relational mapping), and with this, you can create queries to the database without the necessity to write them in plain SQL (which saves you from writing boilerplate code), and if you have any necessity to customize a query, or the query generate by Hibernate is not performing the way you want, you can still write your own queries with HQL, that is basically SQL but using the names of the classes and properties that you defined in your application (but to works properly, everything have to be well mapped).

    • @FabrizioBeccaceci
      @FabrizioBeccaceci 3 ปีที่แล้ว +1

      @@Gabriel-rl3lg Alright, this description math what i knew and my experience using hibernate and jpa, but this description lists only useful features of it so i don't understand why he discourages people to use it in bigger projects

  • @rs-crypto-university
    @rs-crypto-university ปีที่แล้ว +2

    Your videos are gold. Really high quality and I always learn a lot! I guess you are the only one I know who explains spring boot in such a clear and easy way

  • @modernvfxnerd
    @modernvfxnerd 3 ปีที่แล้ว +1

    "spring jata dpa" cracked me up so hard, dunno why
    great video as always, thank you for making such an effort into making these, if not for your videos i'd propably would never learn this stuff

  • @raymondyoo5461
    @raymondyoo5461 2 ปีที่แล้ว

    I recently start learning Spring Framework and I'm gonna try what you listed on the roadmap
    Thanks for your advice.

  • @mojjammil
    @mojjammil 3 ปีที่แล้ว +1

    Jazakallah. Such a timely video for me when I'm on this journey.

  • @dimitrisfou6908
    @dimitrisfou6908 3 ปีที่แล้ว

    The best notification on my mobile, keep rolling!!!!!!!!!

  • @ruhinapatel6530
    @ruhinapatel6530 2 ปีที่แล้ว

    Your channel is the best I've come across.. Keep doing the great work

  • @samae-r7216
    @samae-r7216 2 ปีที่แล้ว

    Thanks brother. I'm starting to learn Spring, definitely following you.

  • @katana8960
    @katana8960 2 ปีที่แล้ว

    The roadmap is so clear for beginner to learn Spring Boot. Thank you so much.

  • @eladdieyo84
    @eladdieyo84 2 ปีที่แล้ว +1

    So, setting up the architecture you would do what first? I know you would want to read the documentation; however, given this tutorial, would you set up the class libraries first so that you can start the transactions?

  • @dongli9832
    @dongli9832 2 ปีที่แล้ว +1

    this is very crystal clear, very helpful to line up in the mind. keep going, appreciate!

  • @TechStory5
    @TechStory5 3 ปีที่แล้ว +1

    I would love if you make a video about springboot testing

  • @milkabakhuya6078
    @milkabakhuya6078 4 หลายเดือนก่อน

    Thank you amigoscode .Quite good to learn from you

  • @akailok
    @akailok 3 ปีที่แล้ว +23

    Sir you have great knowledge and good teaching skills. Can you develop a small project using
    1.spring boot
    2.mangodb
    2.Auth 2.0
    4.caching
    5.Load balancing
    6.Thread sharing
    7.React as front end.
    Can you please develop mini project using above concepts. This can help millions of poor people who can't afford to join expensive classes online.

    • @nagavijaykumarprathi8531
      @nagavijaykumarprathi8531 3 ปีที่แล้ว +1

      Bro..
      Do find any course/video with above topics

    • @a-roh5039
      @a-roh5039 2 ปีที่แล้ว

      There is nothing "mini" about combining all those concepts. These topics have been covered in countless places. Being a good developer means going outside of your comfort zone and figuring some things out for yourself. So I'd suggest finding your own resources and doing this project yourself. You will learn a lot more this way.

    • @sastashroud7646
      @sastashroud7646 2 ปีที่แล้ว

      @@a-roh5039 should I do data structures and algorithms or Learn spring boot for switching job

  • @trinhduyhung8211
    @trinhduyhung8211 3 ปีที่แล้ว

    Finally. Been waiting for this. Thanks dude

  • @demamdq2346
    @demamdq2346 3 ปีที่แล้ว

    Microservice course will we great, cant wait!!!

  • @imtiazbasha3324
    @imtiazbasha3324 2 ปีที่แล้ว +1

    Assalamu alaikum brother. Really Awesome video

  • @EugeneChe-81
    @EugeneChe-81 3 ปีที่แล้ว

    Спасибо! Очень вовремя и доходчиво) Hello from Russia) 🇷🇺

  • @sadiqshah1349
    @sadiqshah1349 3 ปีที่แล้ว

    Excellent video. Keep posting videos. Appreciated.

  • @shahrukh8222
    @shahrukh8222 3 ปีที่แล้ว

    Please make one video on hibernate. I've been following your videos since last year and I have to admit that your knowledge is impeccable.

  • @dadasajad8741
    @dadasajad8741 2 ปีที่แล้ว

    looking forward to it brother. thank you very much.

  • @faculorenzo
    @faculorenzo 2 ปีที่แล้ว

    The best Java teacher so so far. I would like the Oath 2 course from you. Thank! Huge Fan

  • @t20t1
    @t20t1 3 ปีที่แล้ว

    Very good teaching or information sharing style and finally
    what a beautiful voice you have.

  • @marcoandreschmidt5859
    @marcoandreschmidt5859 6 หลายเดือนก่อน +1

    Studying spring framework was one of the most boring things that I ever did in programming. It’s incredible overwhelming. The project is huge. So … sure I’ll keep going

  • @AnaoDoEmbu
    @AnaoDoEmbu 3 ปีที่แล้ว

    Very nice initiative Bro! Congratulations!

  • @pguti778
    @pguti778 2 ปีที่แล้ว

    You've got my sub!!! So clear!!

  • @leiss6623
    @leiss6623 3 ปีที่แล้ว +10

    Thanks for the guide.
    Could you do a video on data structure and algorithms roadmap?

    • @Swingtraders_
      @Swingtraders_ 3 ปีที่แล้ว

      Please help on the data structures

  • @hsmhsm327
    @hsmhsm327 ปีที่แล้ว

    thnx man
    Spring for a beginner is really confusing
    what to use, what to learn, with what you need to start

  • @sakshamgupta7316
    @sakshamgupta7316 9 หลายเดือนก่อน

    Amazing work brother!! Thanks a lot for the video..

  • @sefakutlu737
    @sefakutlu737 2 ปีที่แล้ว

    Thank your for creating this roadmap. It helped me a lot

  • @Iliaspap80
    @Iliaspap80 3 ปีที่แล้ว +3

    OAuth2 would be really interesting indeed. Keep up the good work!

  • @buntymaurya2821
    @buntymaurya2821 3 ปีที่แล้ว

    Thanks for this roadmap learned new stuffs

  • @sandeepnanda7928
    @sandeepnanda7928 3 ปีที่แล้ว +3

    Thanks a lot for sharing the Spring Boot Roadmap. It would be very helpful if you could share OAuth2 and Spring Cloud.

  • @makumbo22
    @makumbo22 3 ปีที่แล้ว

    Awesome material AMIGO, thank you too much for all your support to the community!!!

  • @mudas
    @mudas 3 ปีที่แล้ว

    Excellent, This is what I was looking for a long time

  • @JazminMortimer
    @JazminMortimer 3 ปีที่แล้ว

    This is exactly what I needed!!!

  • @tanveerbaba30
    @tanveerbaba30 3 ปีที่แล้ว +4

    Would be good if we have a Tutorial on OAuth2

  • @sergeil.2548
    @sergeil.2548 3 ปีที่แล้ว +2

    Great video, thank you very much! I was looking for a breakdown of all Spring Boot components, and here it is 👍🏼

  • @danielmuthoni9777
    @danielmuthoni9777 3 ปีที่แล้ว

    Great! One of the best tutor here. Your explanation is so exceptional.

  • @Mmonk111
    @Mmonk111 3 ปีที่แล้ว +1

    I am a frontend focused full-stack developer. My team uses the backend stack with Spring boot, Spring Data JPA, Querydsl (or JPA criteria), and less than 5% of native SQL queries.
    It is a commercial project, not a toy project, and the majority of the SQL-related works are covered only with the stack, without using JdbcTemplate or native SQL queries that much.
    I've read many articles about the development team with the exact same tech stack while managing 100+ million dollars transactions every week/month.
    I don't understand why you mentioned like a Spring Data JPA is just good for a small application. I mean, I'm sure that It's good for a production-level product as well as a toy project with the support of the other good libraries.

    • @LucasAndradeX
      @LucasAndradeX 2 ปีที่แล้ว

      Didn't understand it either

  • @CarlosRojas-zk1ic
    @CarlosRojas-zk1ic ปีที่แล้ว

    This content is great thanks so much!

  • @rakeshmi2092
    @rakeshmi2092 3 ปีที่แล้ว

    its very nice and boost up knowledge of every one.

  • @abdelrahmanelsayed3290
    @abdelrahmanelsayed3290 3 ปีที่แล้ว

    I really needed this. Thank you bro. I'm loving your videos and your courses.

  • @aamnig2467
    @aamnig2467 3 ปีที่แล้ว

    Many thanks, really I enjoyed your way of explaining the concepts, really appreciated

  • @_wizard123
    @_wizard123 3 ปีที่แล้ว

    ma men you are a beast bro i owe u my success

  • @omarbarra3456
    @omarbarra3456 3 ปีที่แล้ว

    I have pretty much understood the amazing knowledge you have shared, Thanks!

  • @Filfranca
    @Filfranca 3 ปีที่แล้ว

    Thank you very much for the video !

  • @ngoalalibo4862
    @ngoalalibo4862 3 ปีที่แล้ว

    Amazing Video!!! Great Depth

  • @smailkoubi6547
    @smailkoubi6547 3 ปีที่แล้ว

    I just watched the video and i want to say thank you. Thank you for the great explanation and for investing your time and efforts to help others. May Allah bless you. Although didn't expect to be on the screen haha !

  • @mechda87
    @mechda87 2 ปีที่แล้ว

    Salamu3leikoem my brother!!! Amazing page!!! I will follow u!!!

  • @iamsushiil
    @iamsushiil 3 ปีที่แล้ว

    Yes ! we are really interested in OAuth2 security, please do make a full course on it.

  • @elhouahmed2087
    @elhouahmed2087 ปีที่แล้ว

    و عليكم السلام
    May GOD bless you, teacher !
    It's one of the best long tech tubes i watched so far 👌

  • @boristhedestroyerofancient508
    @boristhedestroyerofancient508 3 ปีที่แล้ว

    Epic video as always ;)

  • @sukoon-e-alfaz7047
    @sukoon-e-alfaz7047 2 ปีที่แล้ว +1

    There another framework I would recommend to you is Hilla Framework. Please do make a video on that. Thanks for your video brother!!

  • @venkatanirudh9818
    @venkatanirudh9818 3 ปีที่แล้ว +3

    Great video Mr Jamal.Can you please make a roadmap video for a full stack Java developer with Spring Boot as the backend framework and Angular/React as the frontend framework

  • @환이-f6w
    @환이-f6w 3 ปีที่แล้ว

    I always study while watching your videos, thank you

  • @eidancodez65
    @eidancodez65 3 ปีที่แล้ว

    Very insightful roadmap to learn spring framework

  • @nox-freak
    @nox-freak 3 ปีที่แล้ว

    Excatly what i wanted bro !

  • @maximilian_gl
    @maximilian_gl 3 ปีที่แล้ว +2

    OAuth2 video would be great!

  • @mshohag4229
    @mshohag4229 3 ปีที่แล้ว

    Your videos are really informative

  • @znbm8289
    @znbm8289 3 ปีที่แล้ว

    Thank you so much for the video

  • @sanafmomin8847
    @sanafmomin8847 3 ปีที่แล้ว

    Amazing .... this really helped.

  • @mohamedkhaled6370
    @mohamedkhaled6370 2 ปีที่แล้ว +1

    Thanks for the information. But I would like to know the tool you use to draw these roadmaps or illustrations. Thanks again :)

  • @kvn3918
    @kvn3918 ปีที่แล้ว

    Thank you, can you please include the roadmap in the description below ?

  • @kvsm123
    @kvsm123 3 ปีที่แล้ว

    Appreciate your great work.

  • @hishamzoghbi6533
    @hishamzoghbi6533 3 ปีที่แล้ว

    Keep it up bro, god bless you 🙏

  • @malicious8909
    @malicious8909 3 ปีที่แล้ว

    Really needed this one 😃😃😃 much much much appreciated making this one brother, Jazakallah :)

  • @celebmoments7060
    @celebmoments7060 3 ปีที่แล้ว +1

    New subscriber here, Oath 2 course from you will definitely help.
    Thanks

  • @elhalmihamza28
    @elhalmihamza28 3 ปีที่แล้ว

    from Algeria : i am with you go on

  • @jevonne8160
    @jevonne8160 3 ปีที่แล้ว

    Love your work, keep it up

  • @TheRuleOf8020
    @TheRuleOf8020 2 ปีที่แล้ว

    Good day whe(er)(n)ever you are! Does anyone know the tool this good man uses to build the flowchart with? Thanks

  • @rishishah9040
    @rishishah9040 3 ปีที่แล้ว +3

    Hello Sir, I am very curious about what software do you use to build roadmap like the one in this video. Love your content. Keep it up.

  • @mustafaali3741
    @mustafaali3741 3 ปีที่แล้ว +1

    Could you please do Microservices with Spring Boot (Zull API Gateway, Eureka Service Discovery, Circuit Breaker-Hystrix, Load-Balancing, Swagger, OAuth2RestTemplate, OAuth2, Slf4j, MySQL or Oracle SQL Developer)

  • @sweetyyi415
    @sweetyyi415 3 ปีที่แล้ว

    what are the prerequisites that i should have before diving into spring framework , thank you for the rich content , baraka allaho fik

  • @FahadAli-km3ll
    @FahadAli-km3ll 2 ปีที่แล้ว

    Wa alaykum salam. Just discovered your channel. Amazing content! Subbed!

  • @Adam-qn9uq
    @Adam-qn9uq 2 ปีที่แล้ว

    🙏 Much much appreciated !!
    You're becoming my reliable resource for my study 👍
    As-salamu alaykum ☺

  • @igrbloodlemonproductions5262
    @igrbloodlemonproductions5262 3 ปีที่แล้ว +6

    Great video, helpful as always! Have you thought of making a video on how to implement web sockets in springboot since it's a highly asked thing to be used by web applications.

  • @zoricamaneva3352
    @zoricamaneva3352 ปีที่แล้ว +2

    Great overview for Spring Boot, can you make a whole course for decomposing a Spring Boot monolith application into micro services, because there are so many developers facing with it as we have old applications that should be migrated into microservices. Think will be very useful, thank you

  • @MrNdunga
    @MrNdunga ปีที่แล้ว

    Good day please make a video on explaining the structure of spring boot for beginners

  • @houssemeddine6522
    @houssemeddine6522 3 ปีที่แล้ว

    Amazing bro, this is very helpful.

  • @ProgrammingwithShahan
    @ProgrammingwithShahan 3 ปีที่แล้ว

    Such a great video. I appreciate it

  • @youneselhamss2908
    @youneselhamss2908 2 ปีที่แล้ว

    You had with assalamu 3alaikum🙌🏽❤️

  • @younesdehbi8791
    @younesdehbi8791 3 ปีที่แล้ว

    Crystal Clear Amigooooo

  • @dungphamtien4027
    @dungphamtien4027 3 ปีที่แล้ว

    Great video. Thank you very much!