Classbaze

Disclosure: when you buy through links on our site, we may earn an affiliate commission.

Java Design Patterns & SOLID Design Principles

A master guide to gang of four design patterns & SOLID design principles using Java
4.6
4.6/5
(2,734 reviews)
22,867 students
Created by

9.7

Classbaze Grade®

9.9

Freshness

8.9

Popularity

9.8

Material

A master guide to gang of four design patterns & SOLID design principles using Java
Platform: Udemy
Video: 17h 0m
Language: English
Next start: On Demand

Best Design Pattern classes:

Classbaze Rating

Classbaze Grade®

9.7 / 10

CourseMarks Score® helps students to find the best classes. We aggregate 18 factors, including freshness, student feedback and content diversity.

Freshness

9.9 / 10
This course was last updated on 3/2022.

Course content can become outdated quite quickly. After analysing 71,530 courses, we found that the highest rated courses are updated every year. If a course has not been updated for more than 2 years, you should carefully evaluate the course before enrolling.

Popularity

8.9 / 10
We analyzed factors such as the rating (4.6/5) and the ratio between the number of reviews and the number of students, which is a great signal of student commitment.

New courses are hard to evaluate because there are no or just a few student ratings, but Student Feedback Score helps you find great courses even with fewer reviews.

Material

9.8 / 10
Video Score: 10.0 / 10
The course includes 17h 0m video content. Courses with more videos usually have a higher average rating. We have found that the sweet spot is 16 hours of video, which is long enough to teach a topic comprehensively, but not overwhelming. Courses over 16 hours of video gets the maximum score.
The average video length is 5 hours 10 minutes of 72 Design Pattern courses on Udemy.
Detail Score: 10.0 / 10

The top online course contains a detailed description of the course, what you will learn and also a detailed description about the instructor.

Extra Content Score: 9.5 / 10

Tests, exercises, articles and other resources help students to better understand and deepen their understanding of the topic.

This course contains:

0 article.
98 resources.
0 exercise.
0 test.

In this page

About the course

Course Overview

    This course starts with SOLID Design Principles in Java. It will then provide a comprehensive introduction to Java Design patterns with practical, hands on exercises.

What are SOLID Design Principles?
SOLID design principles are almost a mandatory skill for every Java developer. These principles enable you to write most reusable & clean Java code in your projects.
You’ll learn SOLID Principles which are:
Single Responsibility Principle
Open-Closed Principle
Liskov Substitution Principle
Interface Segregation Principle
Dependency Inversion Principle

All these principles are explained in detail and you’ll refactor existing Java code and apply these principles in hands on exercise along with me.
Then we move on to Java Design Patterns.
To learn about the design patterns using Java programming language we’ll discuss:   

•    Learn what kind of problems are solved by each design pattern.
•    Discuss various roles in the design pattern using UML diagrams.
•    We’ll use UML of example that we are going to solve as well as UMLs from gang of four book
•    Discuss how the design  pattern is applied in the example & how various parts fit together.
•    Hands on example using Java in Eclipse IDE that uses the design pattern.
•    Various design & implementation considerations for every design pattern.
•    Discuss how the design pattern varies from another similar pattern.
•    See where a design pattern is used in real life.
This course covers all the classic design patterns from the Gang of Four (GoF) book. In addition we’ll discuss few newer design patterns that are used in modern software development. We’ll discuss how a pattern can be implemented in various ways & how we can tailor them to be used with Java language.
This course is the Most Comprehensive course on Java Design Patterns that you can find.

So, what are Design Patterns & why should you care?
    Design patterns represent solutions to common problems, which you face while doing programming. These solutions are reusable and can solve a wide variety of problems. These became popular with the release of classic book on the subject “Elements of Reusable Object-Oriented Software” writtern by Erich Gamma, John Vlissides, Ralph Johnson and Richard Helm (these authors are known as Gang of Four and so the common abbreviation GoF book 🙂 )
    One problem while studying this book as a Java developer is that the authors are using C++ to demonstrate a pattern, which was the most popular & widely used programming language at the time. So you’ll see examples using C++ language features like pointers, copy constructors etc. which do not translate easily to Java.
    This course will help greatly in that aspect. We’ll study each design pattern using Java to its full potential.

What is covered in this course?

    This course covers SOLID Design Principles and 26 design patterns in all. We’ll cover following:

•SOLID Design Principles: Learn about Single Responsibility, Open-Closed, Liskov substitution, Interface segregation & Dependency Inversion principles.
•Creational Design Patterns: Simple Factory, Abstract Factory, Factory Method, Singleton, Builder, Prototype & Object Pool
•Structural Design Patterns: Object & Class Adapters, Decorator, Bridge, Facade, Static & Dynamic Proxy, Flyweight & Composite  
•Behavioral Design Patterns: Chain of Responsibility, Command, Interpreter, Mediator, Iterator, Memento, Observer, State, Strategy, Template Method, Visitor, & Null Object
    Each design patterns is also implemented in a follow along coding lecture.

How the Course is Structured?
    We focus on live coding along with theory. Each design is implemented in a live coding session (which you can follow along) as well as discussed with UML & slides. After studing a section you’ll know almost everything about the design pattern.
    This course is created with focus on being used as a reference. So each design pattern is discussed in it’s own section with a separated lecture for each aspect of the design pattern. Each section is organized as following lectures:
    1. Introduction – This lecture introduces pattern, a problem that it solves & a formal UML diagram
    2. Implementation Steps – This lecture will discuss how you’ll implement this pattern in Java.
    3. Example UML – We discuss the UML of the hands on problem we’re going to solve.
    4. Implementation – In this lecture we’ll implement the design pattern in Java using Eclipse IDE
    5. Implementation & Design Considerations – Some important points about performance, variations & practical advice on using the pattern
    6. Real World Example – In this lecture we’ll see how the pattern is used in real life by Java’s own class library & popular frameworks like Spring, JSF
    7. Comparison with Similar pattern – See how the pattern is different than another similar pattern.
    8. Pitfalls – Many pattern have some drawbacks. This lecture will show you what those are.
    9. Summary – This lecture will summarise all the information about the pattern.
    As you can see, by breaking a single design pattern in smaller topics, you can easily watch only those parts that you need in future.

What is provided with the Course?

• We have provided all code samples from the hands on lectures. You can download the starter code & follow along or you can download the finished code to study on your own.
• All UML diagram with description of each role in the design pattern is provided as PDF in summary video. These slides are enough to quickly revise design pattern structure.
•A PDF guide to all design pattern summaries with code samples and UML diagrams.
Who should take this Course?

• Beginner as well as experience Developers.
• Software Designers & Architects.
 

What can you learn from this course?

✓ Master 26 design patterns including 23 design patterns of gang of four & other new modern design patterns
✓ Master the SOLID design principles using Java with hands on examples along with design patterns
✓ Get a complete understanding of Java design patterns & understand where to use them in Java code
✓ Learn the differences between competing design patterns to choose correct solution to your problem
✓ Get real world examples of design patterns usage with hands on projects for every design pattern
✓ Become senior Java developer by learning about design patterns and SOLID design principles
✓ Understand & implement all creational, structural & behavioral gang of four design patterns using Java
✓ Understand & implement Null Object, Object Pool design patterns using Java
✓ Comprehensive knowledge about limitations, comparisons, real world usage & hand on examples of design patterns using Java

What you need to start the course?

• You should have a basic knowledge of Java & basic programming concepts
• If you want to follow along, you need any Java code editor & a computer to run it

Who is this course is made for?

• This course will benefit every Java developer, regardless of your experience, you’ll find something to use.
• If you are just beginning your career, then you must take this course. It’ll benefit you most
• If you are working in Java for 1 – 4 years, this course’ll help you advance to next stage in your career
• If you are preparing for interview, this course is a must for you.
• If you are experience developer, this course will help you brush up your software design skills

Are there coupons or discounts for Java Design Patterns & SOLID Design Principles ? What is the current price?

The course costs $15.99. And currently there is a 82% discount on the original price of the course, which was $89.99. So you save $74 if you enroll the course now.
The average price is $15.5 of 72 Design Pattern courses. So this course is 3% more expensive than the average Design Pattern course on Udemy.

Will I be refunded if I'm not satisfied with the Java Design Patterns & SOLID Design Principles course?

YES, Java Design Patterns & SOLID Design Principles has a 30-day money back guarantee. The 30-day refund policy is designed to allow students to study without risk.

Are there any financial aid for this course?

Currently we could not find a scholarship for the Java Design Patterns & SOLID Design Principles course, but there is a $74 discount from the original price ($89.99). So the current price is just $15.99.

Who will teach this course? Can I trust Coffee Powered Crew?

Coffee Powered Crew has created 2 courses that got 2,766 reviews which are generally positive. Coffee Powered Crew has taught 23,083 students and received a 4.6 average review out of 2,766 reviews. Depending on the information available, we think that Coffee Powered Crew is an instructor that you can trust.
Excellence with Elegance to Perfection!
Browse all courses by on Classbaze.

9.7

Classbaze Grade®

9.9

Freshness

8.9

Popularity

9.8

Material

Platform: Udemy
Video: 17h 0m
Language: English
Next start: On Demand

Classbaze recommendations for you