Java Spring Boot REST API Tutorial using Spring Boot 3, JPA/Hibernate, MySQL, IntelliJ IDEA, Postman

Поделиться
HTML-код
  • Опубликовано: 27 янв 2025

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

  • @JavaGuides
    @JavaGuides  Год назад +42

    Udemy course: Spring 6 & Spring Boot 3 for Beginners (Includes 5 Projects)
    Course Description: Spring Framework Core 6, Spring Boot 3, Spring Security 6, REST API, Spring MVC, Spring WebFlux, JPA, Thymeleaf, Docker
    Link: www.udemy.com/course/learn-spring-boot/?referralCode=C2200F473771CD228695

  • @javatechnology24
    @javatechnology24 Год назад +25

    Your teaching skill is another level. You deserve more subscribers. Awesome crash course

  • @leozhong9270
    @leozhong9270 Год назад +5

    Omg, you are the teacher I took from Udemy; it's a really good tutorial for spring-boot.

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

    Beautiful & well Explained tutorial ❤ Thank you Ramesh sir

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

    Thanks for video on latest version of spring boot

  • @anjanik7053
    @anjanik7053 Год назад +4

    I like your style of teaching.. Thanks

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

    Can you post the video for login with forget password through email verification in spring boot.....?

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

    The best of the Bests !

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

    great man, now i will be able to build my backend for my app,

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

    Really good starter. I know spring boot is a lot more than this. But alteast it got me started.
    Thanks sir

  • @7.waseem
    @7.waseem Год назад

    eagerly waited for this...Now the wait is up! Thank you Dear Ramesh Sir❤

  • @carlosmontes-ui4ri
    @carlosmontes-ui4ri 8 месяцев назад

    Thanks My friend

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

    The way of your teaching level is amazing❤❤

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

    will you make an example using the new spring boot 3.1. docker compose feature?

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

    Awesome Video Sir On Spring Boot.

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

    On 32:23, why didn't you use @Autowired annotation with employeeRepository?

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

      We are using constructor-based dependency injection to inject the dependency.
      Before Spring 4.3, we had to add an @Autowired annotation to the constructor. With newer versions, this is optional if the class has only one constructor.
      To know more, check out my blog post: www.javaguides.net/2023/01/spring-boot-constructor-injection.html

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

      @@JavaGuides great, thanks!

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

    I love all your courses Thank you so much for all the free quality content you give away to the community!
    I would like if in the future you can do a course on JUnit test applied to a basic crud like this for example. Greetings from Argentina

  • @user-sapdev
    @user-sapdev Год назад +5

    Hi Ramesh. I hope you are doing Great. I'm glad to to share my success with Java Guides for your impeccable efforts in bringing the right content in a simple and clear way for Interviews Preparation and also for Coding Practice.After more than 2 years of career gap . Continuous Practice and Revision of most of your Udemy Courses and youtube Videos for 3-4 months of duration, I was able to grab multiple opportunities in just 3 weeks of duration. I was able to crack most of the interviews if JD is matching to my profile. My Last CTC is around 6LPA But in this tough times also i was able to get more than 150% hike in one Product based Level 3 Company and also in one of the top 5 Indian IT MNC with all your due support and guidance of your Udemy Courses. I really don't have enough words to express my gratitude towards all the good work you have made in this channel and in your Udemy Courses- which helped me a lot during my interviews and during my practice for interviews. Thanks Once again Ramesh. During this tough times Java Guides & Ramesh's Udemy Courses are my first preference to revise or learn any topic related to Java from scratch and also for coding practise as well.👏👏🙏🙏

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

      Wow, that's amazing news. Congratulations. I am glad that my teaching and content helping my students to get job and knowledge. Your kind words and appreciation made my day.

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

      Hi can you please share which courses you took and flow of courses I mean roadmap for Java guides courses
      That will helpful my life
      Thank you

  • @HaifengZhu-pn3uq
    @HaifengZhu-pn3uq Год назад

    hi, does Spring have many templates for ecommerce sites?

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

    Thanks sir for making useful videos for us.
    But I request you very respectfully to work in a project in spring boot having at least 6 entities/tables using spring boot in the back end and React/Angular/Next in the front end.

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

    Make video on spring boot and angular with new sprint security thats helpful

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

    I have a question, can someone help?
    What is EmployeeDto? and why do we need it? we are mapping it to employee and then mapping it back to EmployeeDto then why we are we even using it? Can't we just use Employee.

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

      EmployeeDto is the data transfer object. It is widely used design pattern to transfer data between client and server. I have a dedicated video on this topic. Just search for spring boot dto on this channel. Of course, you can Employee but i won't recommend to expose entity directly to the client.

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

      @@JavaGuides okay, I'll look for the video. Thank you !

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

    Hello Ramesh - Can we bypass the DTO Objects and use the entity objects?

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

    thanks

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

    Sir please make videos docker and kubernates microservice deployment process

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

    Something I did not understand is in the event that our employee entity has the password property, logically our employeeDTO class will not have the password property since it is not information that we want to share. So in the first instance, if we wanted to obtain the user's password data, how would we receive this information? If our disc class, which is the one that works with the client, does not receive such information?

  • @PradeepKumar-sx6ms
    @PradeepKumar-sx6ms Год назад

    Please discuss spring security changes that are challenging

  • @nagaraj.s9089
    @nagaraj.s9089 Год назад

    Hi Ramesh sir , I have seen your all the spring videos. It's amazing package. Thanks lot ❤. Only one request could you please implement oauth 2.0 in spring boot rest API ?

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

    thank you

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

    Please Make a Video on Angular Crash course.

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

    Hi, Why the @AllArgsConstructor in the service and the controller ? (Note: My English is very basic but usually I can understand coments)

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

    Hello sir,custom exception is not coming

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

    Is code checked for this tutorial,I’m getting errors in my local

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

    Why not to use @Autowired on field level.?
    What I mean is even if we just add @Autowired annotation on any class's non primitive field then the spring will inject thar particular class and we can use that class members and methods right.
    Then why we should go for constructor based DI. If @Autowired way has cons please make a practical video on it if possible.

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

    I am getting error in importing get methods in mapper from dto and entity it shows cannot resolve method getId() and other methods as well can you help me

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

      me too i didn't understand

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

      ​@@hindsebaoui8960have you got any solution?

    • @splitsecond2810
      @splitsecond2810 15 дней назад

      same... i did generate getter setter in Student class too, but still having error in mapper

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

    Hi, I want to enroll in your course available on UDMY. Can you give me an order in which I should take your course? It will be better if you make a video or write a blog in which you explain what each course offers and in which order they should be taken.
    The courses you offer are almost in the same direction as my area of work. It will be better if you give me a roadmap for this. @JavaGuides

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

    Please use dark mode if possible.

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

    It would be really helpful if you could provide the Github Link for this project. Thank you in advance!

  • @ShikharAgrahari-s7i
    @ShikharAgrahari-s7i Год назад

    Sir can you please provide spring interview questions

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

      There are already videos on spring and spring boot interviews on this channel.

    • @ShikharAgrahari-s7i
      @ShikharAgrahari-s7i Год назад

      @@JavaGuides actually i want you to explain about spring architecture , i am facing this questions on many interviews

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

    showing this problem Cannot invoke "java.lang.Long.longValue()" because the return value of "com.myproject.project.dto.UserDto.getId()" is null and i am using eclipse