Spring Framework Master Class - Java Spring the Modern Way (Udemy.com)

Learn the magic of Java Spring Framework with Spring Boot, Spring JDBC, Spring AOP, Hibernate, JUnit & Mockito

Created by: in28Minutes Official

Produced in 2022

icon
What you will learn

  • You will Learn Spring Framework the MODERN WAY - The way Real Projects use it!
  • You will Become a COMPLETE Spring Developer - With the ability to write Great Unit Tests
  • You will Acquire ALL the SKILLS to demonstrate an EXPERTISE with Spring Framework in Your Job Interviews
  • You will learn the BASICS of Spring - Dependency Injection, IOC Container, Application Context and Bean Factory
  • You will Become the GO TO GUY for Fixing Spring Framework problems in Your Project
  • You will GO FROM a Total Beginner to an EXPERIENCED Spring Developer
  • You will understand how to use Spring Annotations - @Autowired, @Component, @Service, @Repository, @Configuration, @Primary....
  • You will understand Spring MVC in depth - DispatcherServlet , Model, Controllers and ViewResolver
  • You will use a variety of Spring Boot Starters - Spring Boot Starter Web, Starter Data Jpa, Starter Test
  • You will learn the basics of Spring Boot,

icon
Quality Score

Content Quality
/
Video Quality
/
Qualified Instructor
/
Course Pace
/
Course Depth & Coverage
/

Overall Score : 0 / 100

icon
Live Chat with CourseDuck's Co-Founder for Help

Need help deciding on a java spring framework course? Or looking for more detail on in28Minutes Official's Spring Framework Master Class - Java Spring the Modern Way? Feel free to chat below.
Join CourseDuck's Online Learning Discord Community

icon
Course Description

Do you want to become an Expert on the Spring Framework? Do you want to become a Modern Spring Developer? Join the course to learn Spring Framework the Modern Way - The way Real World Java Projects use it!

Learn the magic of Spring Framework. From IOC (Inversion of Control), DI (Dependency Injection), Application Context to the world of Java Spring Boot, Spring AOP, Spring JDBC and JPA. Get set for an incredible journey.



WHAT OUR LEARNERS ARE SAYING:

5 STARS - This is so far the best Spring course I have been taking. Start from simple and easy, yet in-depth explanation. Really well-designed! Recommend to anyone like me that have a medium java background (learned from school class), but completely new to Spring. And it is also a great practice for what I learned from our OOAD course at school. Now it is crystal clear to me!! Highly recommended!

5 STARS - Excellent In-depth, Real World Oriented Course with Excellent teaching style with crystal clear explanations - in general a course cannot be better than this in my opinion. Thank you for this superb training experience Ranga.

5 STARS - The instructor is very knowledgeable, and what makes this course a winner is the scope of each example along with its explanation. The lectures are short, and enough to introduce and understand the topic to make it functional. It really helps that it is hands-on, and I had no trouble or errors running any of the code. You learn the essentials to work with Spring, but also guides you through Eclipse and shortcuts which are very useful. The pace and length of the lectures are perfect! Extremely well done! This knowledge would have taken me a lot longer to learn were it not for this course, Thank you Ranga!

5 STARS - I know a lot more about dependency injection, IOC, loose-coupling, and application context thanks to Ranga. He has changed my life. I am now more knowledgeable about Spring framework and am really confident in my interviews. He deserves every penny from me and needs to become a millionaire for making me position myself to potentially becoming a Spring Guru.

5 STARS - This course shifted me to a new level of understanding Spring. Great tutor.

5 STARS - Great course and to the point, which is helpful if you need to brush up/learn all you need fast all while understanding the fundamental concepts about spring/spring mvc/spring boot and their related technologies.



COURSE OVERVIEW:

In this course, you will learn the features of Spring, Spring Boot and Spring Modules - JDBC, AOP, Data JPA with hands-on step by step approach.

You will get introduced to Spring Boot, Unit Testing with JUnit and Mockito, talking to the database with Spring JDBC and JPA, Maven (dependencies management), Eclipse (IDE) and Tomcat Embedded Web Server. We will help you set up each one of these.

You will learn about Spring step by step - in more than 100 steps. This course would be a perfect first step as an introduction to Spring.

You will learn about

Basics of Spring Framework - Dependency Injection, IOC Container, Application Context and Bean Factory.

Spring Annotations - @Autowired, @Component, @Service, @Repository, @Configuration, @Primary....

Spring MVC in depth - DispatcherServlet , Model, Controllers and ViewResolver

Spring Boot Starters - Spring Boot Starter Web, Starter Data Jpa, Starter Test

Basics of Spring Boot, Spring AOP, Spring JDBC and JPA

Basics of Eclipse, Maven, JUnit and Mockito

Basic concept of a Web application step by step using JSP Servlets and Spring MVC

Unit testing with JUnit and Mockito using XML and Java Spring Application Contexts



COURSE HIGHLIGHTS:



Level 1 : Spring Framework in 10 Steps

Step 1 - Setting up a Spring Project

Step 2 - Understanding Tight Coupling using the Binary Search Algorithm Example

Step 3 - Making the Binary Search Algorithm Example Loosely Coupled

Step 4 - Using Spring to Manage Dependencies - @Component, @Autowired

Step 5 - What is happening in the background?

Step 6 - Dynamic auto wiring and Troubleshooting - @Primary

Step 7 - Constructor and Setter Injection

Step 8 - Spring Modules

Step 9 - Spring Projects

Step 10 - Why is Spring Popular?

Level 2 : Spring in Depth

Step 11 - Dependency Injection - A few more examples

Step 12 - Autowiring in Depth - by Name and @Primary

Step 13 - Autowiring in Depth - @Qualifier annotation

Step 14 - Scope of a Bean - Prototype and Singleton

Step 15 - Complex scenarios with Scope of a Spring Bean - Mix of Prototype and Singleton

Step 15B - Difference Between Spring Singleton and GOF Singleton

Step 16 - Using Component Scan to scan for beans

Step 17 - Lifecycle of a Bean - @PostConstruct and @PreDestroy

Step 18 - Container and Dependency Injection (CDI) - @Named, @Inject

Step 19 - Removing Spring Boot in Basic Application

Step 20 - Fixing minor stuff - Add Logback and Close Application Context

Step 21 - Defining Spring Application Context using XML - Part 1

Step 22 - Defining Spring Application Context using XML - Part 2

Step 23 - Mixing XML Context with Component Scan for Beans defined with Annotations

Step 24 - IOC Container vs Application Context vs Bean Factory

Step 25 - @Component vs @Service vs @Repository vs @Controller

Step 26 - Read values from external properties file

Level 3 has 3 steps on Unit Tests with Java and XML Contexts

Level 4 : Spring Boot in 10 Steps

Step 1 : Introduction to Spring Boot - Goals and Important Features

Step 2 : Developing Spring Applications before Spring Boot

Step 3 : Using Spring Initializr to create a Spring Boot Application

Step 4 : Creating a Simple REST Controller

Step 5 : What is Spring Boot Auto Configuration?

Step 6 : Spring Boot vs Spring vs Spring MVC

Step 7 : Spring Boot Starter Projects - Starter Web and Starter JPA

Step 8 : Overview of different Spring Boot Starter Projects

Step 9 : Spring Boot Actuator

Step 10 : Spring Boot Developer Tools

Level 5 : Spring AOP

Step 01 - Setting up AOP Example - Part 1

Step 02 - Setting up AOP Example - Part 2

Step 03 - Defining an @Before advice

Step 04 - Understand AOP Terminology - Pointcut, Advice, Aspect, Join Point, Weaving and Weaver

Step 05 - Using @After, @AfterReturning, @AfterThrowing advices

Step 06 - Using @Around advice to implement performance tracing

Step 07 - Best Practice : Use common Pointcut Configuration

Step 08 - Quick summary of other Pointcuts

Step 09 - Creating Custom Annotation and an Aspect for Tracking Time

Level 6 :Spr

*Some courses are excluded from this sale. Coupon not working? If the link above doesn't drop prices, clear the cookies in your browser and then click this link here.
Also, you may need to apply the coupon code directly on the cart page to get the discount.

Coupon Code

icon
Instructor Details

in28Minutes Official

We are teaching 30+ Courses to 450K Learners on DevOps, Cloud ( AWS, PCF, GCP, and Azure ), Full Stack ( React, Angular ), Java Programming, and Java Frameworks ( Spring, Spring Boot, Spring MVC, Hibernate ). [LEARNING PATHS 00 to 06 for DevOps, Full Stack, Cloud, Spring Boot and Java in the FAQ below] We use Problem-Solution based Step-By-Step Hands-on Approach With Practical, Real-World Application Examples. We have a wide range of courses focused on Spring Boot - Creating APIs and Microservices, Deploying to Cloud ( AWS, Azure, Docker, Kubernetes, Azure ), and Integrating with Full Stack Front end frameworks ( React & Angular ).

icon
Reviews

0.0

0 total reviews

5 star 4 star 3 star 2 star 1 star
% Complete
% Complete
% Complete
% Complete
% Complete

By Azar Uddin on 10/11/2020

Very good course to understand the basics of Spring for beginners. I would suggest to add assignments in between so that we can put our learnings to test.

By Erdal Dalkiran on 9/20/2020

overall, course has enough material for someone who starts learning spring boot. i gave a 4 star review because some of the content taught was obsolete such as JSP.

By Tomasz Rogala on 9/27/2020

Missing some important Spring modules, e.g. Spring security, some update about Spring 5 should be done. Some things are repeated few times.

By Swarna on 9/16/2020

Very good explanation. Am very new to spring and i was able to follow well. Thanks for creating this course. Highly recommend this to others.

By Rashi Chaudhary on 6/9/2020

Concepts explained very well and code samples used helped in understanding the topics . Will definitely recommend this course.

It was great experience throughout the course. When I started learning spring through online tutorials, it was horrible for me to understand. I was not able to decide flow of learning. But this tutorial has step by step with precise content. It's worth to buy this course........Keep it up Sir!!!

By Gaurav J on 6/7/2020

There could have been more content about Spring Hibernate and Spring Boot. Though everything that is explained is great, there are repetitions in some places.

By Robert Durcansky on 11/7/2020

All lessons were clear and nicely explained.
Little bit too high level, missing deeper implementations.
MVC - outdated topic at all
Eclipse IDE - is getting behind the Intellij IDEA
Would be good to explain also Gradle in comparison to Maven

By Anurag Rahangdale on 6/4/2020

Very nicely explained, very easy to understand by any one. This course actually removed my fear about Spring and Spring boot, I become fan of the instructor.

By Amrita Singh on 6/23/2020

To make it more intresting i had to play some background music of piano the course became soothing to the ear and mental peace

By Shubham Chaudhary on 11/7/2020

Simple and Amazing explanation of each and every concept. I really liked how easily you explained IOC, Bean Factory and Application Context.

As a beginner to Computer Science world, I'm not sure whether ill fit in this and make myself be in high demand but with the courses that i got from you Ranga sir, I'm pretty sure that I will reach good heights in my career.
It's not about the single course that you teach in, it's about how to handle a new way of learning which will ease us in understanding the core concept of whatever we are interested in. With this mindset we can enrich in whatever the language that we wish to learn in more playful way.
One more important thing that i would like to add here is, you provided some additional materials regarding to the the Mockito or Eclipse or Maven which may not be necessarily thought by you as this course completely resides with the Spring Framework but you understood the learner's pulse in making them more comfortable by making them understand what's going on and grow interest in the individual in making most out of this course and helping them to think proactively in understanding the concepts in a more playful way.
Simply, the approach that you are providing will be making an individual think of themselves as somewhat near to superheroes in whatever course they enroll for in28Minutes.
From a great Admirer and Fan of in28Minutes,
Manikanta Swamy Avanigadda.