Understand Clean Architecture in 7 Minutes

  Переглядів 70,191

Amichai Mantinband

Amichai Mantinband

7 місяців тому

Getting Started with Clean Architecture (promo code CLEANAMI): dometrain.com/course/getting-...
In today's video, we'll do a quick overview of clean architecture, one of the most common architectural patterns for how to structure software.
Become a Patron: / amantinband .
Connect with me on 'em socials:
Twitter: / amantinband
LinkedIn: / amantinband
GitHub: github.com/amantinband

КОМЕНТАРІ: 93
@kmcdo
@kmcdo 7 місяців тому
congrats on course #2 on dometrain! I really enjoy the way you approach your educational content!
@amantinband
@amantinband 7 місяців тому
Thanks, Kyle! 🙏🏼
@trevorwilson7012
@trevorwilson7012 5 місяців тому
I’m really struggling to see how clean architecture is really that different from a layered approach. Maybe there’s an additional layer for domain/entities and another level of indirection. Honestly, drawing architecture using concentric circles and with dependencies upside down just makes the architecture look really different when it’s not that different to layered architecture. The idea that infrastructure is dependent on application logic makes no sense. It’s clearly application logic depends on infrastructure. Just because the arrow is in the wrong direction and there is some intermediate project doesn’t change that. Even if there’s an interface layer that mediates between the application logic and the infrastructure doesn’t change the fact that the application logic layer depends on the infrastructure. Don’t get me wrong I like Uncle bob, but this is just really unclear and confusing. It’s a solution looking for a problem.
@nordBelka
@nordBelka 3 місяці тому
Absolutely true. However dependency it is about types and not real world functionality. So when you have type(interface) in app layer and dependent type(implementation of interface) at infrastructure layer that means that infrastructure dependent from app even if real world fact that app layer calls infrastructure layer. Intermediate project here is really about a way of abstracting types away from each other. So they may just sit on different namespaces to get there but more often they separated with projects. All of this can be implemented with 3tier layer architecture with proper IoC and have same good abstraction level. The thing here that ages ago when 3tier was popular DI technique wasn't so popular and references between layers were more strict so 3tier become a synonym of hard coupled architecture.
@ArtemKorotenko
@ArtemKorotenko 2 місяці тому
Not that complicated, you're just confusing term "depends" a bit. There is a source code dependency (having "using" of some class in other class) and flow of control dependency (calling stuff from one assembly in other). And while domain clearly depends on infrastructure on flow of control level, but you can avoid source code dependency by using interfaces and inversion of control. And that will make your app more mantanable, because changes in infrastructure would not affect your domain assemblies.
@charss5416
@charss5416 23 дні тому
I'm also having a really hard time understand these concepts. I dont know whats different from calling the database directly from the controller. This has been done through all my university courses and every single youtube tutorial out there and even the laravel documentation. And now WHAT!? Its wrong to write logic in the controllers!?? I really have no idea how everything flipped like that it's either the world is trolling me or i really have no idea about software engineering (im a final year student)
@carlosreis9775
@carlosreis9775 13 днів тому
@@charss5416 Basically we can access classes from different namespaces, in another folder, solution, or project. You can organize it any way you want. Tutorials and university courses as well as the official documentation usually use simple examples, the most straightforward way. In the real world they get really large projects. One of the reasons clean architecture is used, is so that it's easier to maintain large projects, So if for example you have to migrate from using SQL Server to another database like PostgreSQL, all you have to change is the infrastructure layer.
@NightKnight252
@NightKnight252 8 днів тому
The way I look at it, it’s just layered architecture + dependency injection, so nothing new. I’m not sure if they’re just using that confusing diagram and the term “clean architecture” as gimmick to sell their course
@bartoszcwiakala8916
@bartoszcwiakala8916 6 місяців тому
Hi, I watched a number of videos on the topic and I had questions after each. This video was fantastic and clarified all the questions I had in the previous videos. Thank you!!
@grant1133
@grant1133 7 місяців тому
Been following your older clean architecture videos before i start my new role and theyve been an amazing help. Architectures can sometimes feel a bit convoluted but you make it easy to follow. Will defo check out your new course in future
@alexandroszountas2980
@alexandroszountas2980 4 місяці тому
Already took your 3 courses. Waiting for DDD deep dive. Congratulations on your excellent work!
@Myuuiii
@Myuuiii 7 місяців тому
Literally learning clean architecture right now, this’ll be helpful xD
@Luismvm90
@Luismvm90 7 місяців тому
Just my thoughts, as much as I like how clean architecture keeps everything tidy and overall a more flexible way to architect your code, after 14 years of software development in large corporate projects, startups and freelancing consulting... I can count on one hand the times I've seen anyone benefiting from that flexibility. The more we move into smaller microservices, the less value you get out of it. Project changes that require infrastructure changes, often come with other larger changes in the tech stack as well. You often endup needing to rebuild the microservice anyway. I know everyone slags off N-Tier architecture, but for the vast majority of cases it's still the simplest and most efficient way of structuring your code and has a much lower barrier of entry which largely benefits smaller companies. As with any technology always choose what fits better with your team and your business, even if it's not the more "correct" way of doing things.
@ernest1520
@ernest1520 7 місяців тому
Clean architecture and microservices aren't mutually exclusive. You can still apply clean architecture principles in microservices. In fact, with each service being scoped and small, it's easier to implement clean architecture and make it, well... cleaner. As to your first point, I think that it's the opposite but it's difficult to prove negative. Once you have clean architecture, it seems like you don't gain much from it. But it's when you don't have you realise how much you could benefit from it. I have a live example of it in my current work, where we have two systems developed in parallel, with only one conforming fully to the clean architecture principles. The one where we don't use it is a perfect example of the broken window theory.
@teekwick
@teekwick 7 місяців тому
@@ernest1520 I think his point was that there's no benefit of using clean architecture over N-Tier because the scope is small with a microservice and will probably stay that way until EOL.
@amantinband
@amantinband 7 місяців тому
Yeah, It’s wrong to blindly apply clean architecture to any project. But there are many projects that are a mess since they don’t have a clear boundary between data access logic and business logic. This is especially painful during migration from a monolith to microservices, refactoring, adding features or updating business logic
@Luismvm90
@Luismvm90 7 місяців тому
@@amantinband I get what you saying, but that's not necessarily down to N-Tier architecture for example. You can still apply SOLID principles in N-Tier... legacy projects typically had 3 tiers, where your domain talked directly to the database (infrastructure)... for example you can add a repositories layer in between with interfaces abstraction and you can still replace your infrastructure layers without impacting domain. But my point here was mainly about the fact that the whole concept of microservices is that they are smaller chunks of code with very clear domain boundaries and scopes, and when you have to either change those boundaries and scopes or the underlying infrastructure what you most often see is that teams build an entire new microservice and slowly deprecate the old one. Therefore I'm of the opinion that for the vast majority of businesses that do not have the resources to deal with the overhead of a more complex code architecture, N-Tier is perfectly fine as long as you do it right 😊
@ernest1520
@ernest1520 7 місяців тому
@@teekwick Yes, I got his point. However, my point was that clean architecture is in many cases applicable to microservices just like it is to other types of architecture. Do note that I said "in many cases", so of course there will be cases where the microservices are truly so "micro" that introducing clean architecture would be an overkill. Nevertheless, some core principles of clean architecture apply uniformly regardless the size, just like- for example- some principles of DDD can be used in various system, not necessarily conforming to the "full DDD".
@mannys12345
@mannys12345 4 місяці тому
Very well explained with visual slides!
@stewieshka
@stewieshka 7 місяців тому
Will you record a video about migration to minimal api from controllers?
@dfytq
@dfytq 7 місяців тому
Thanks a lot. You described it so well that I could understand it in first try. One request, Please make a long video where you will cover Breakdown the problem description, identify domains, repositories, Entities, settingup a clean architecture project. Thank you.
@amantinband
@amantinband 7 місяців тому
I actually do exactly that in detail in my DDD course on dometrain. Did you check it out?
@dfytq
@dfytq 7 місяців тому
@@amantinband Yes, I tried in your youtube channel but it was confusing and I lost the sequence of video at some point. So I just hope that If I could get the whole journey in a single session than I would be able to understand all. Clean Architecture, DDD everything sounds so confusing to me.
@FernandoBaldrich
@FernandoBaldrich 7 місяців тому
Great video, i'm wondering what software do you use to draw arrows on the screen?
@amantinband
@amantinband 7 місяців тому
Presentify. Notice it’s only available for MacOS though
@khyr-hl9yt
@khyr-hl9yt 3 дні тому
Thank you. It was explained in the easiest way
@pdhar1384
@pdhar1384 2 місяці тому
Impressive !!! short and to the point.
@1981ilyha
@1981ilyha 7 місяців тому
Perfect video! Very clear and robust!
@Bressam13
@Bressam13 5 місяців тому
Great explanation!
@zerthz_
@zerthz_ 7 місяців тому
Hey Amichai, what tool are you using to draw arrows and boxes?
@amantinband
@amantinband 7 місяців тому
Presentify but notice that it's available only on MacOS
@big6226
@big6226 2 місяці тому
Thank you very much, for your teaching.
@rlarno
@rlarno 6 місяців тому
@amantinband why do you not use and demo TDD in your course? For me the main reason for using a 'clean' architecture is because you actually get to have fully testable domain and application logic layers. The main guardrail that will keep your product agile and alive. At a minimum it should be mentioned.
@KREKER8331
@KREKER8331 3 місяці тому
Great video, very good explanation.
@touseefghazanfar8487
@touseefghazanfar8487 10 днів тому
Very informative 👍
@jamestacular
@jamestacular 7 місяців тому
If the Infra layer is referencing the domain layer and not vice versa, how are the Infra implementations being called? Is it through dependency injection in the domain layer? If so, wouldn't that mean the domain layer is referencing the Infra layer after all?
@ncdave789
@ncdave789 7 місяців тому
I really don't like that almost every explanation of this design (on YT) is silently skipping important part(s). He even stated this question ~@5:09 and never explained. Point is that, graph is wrong. There is dependency between presentation and integration layers. So you can register concrete classes for dependency injection. And domain layer can't communicate with db, only application layer can. All in all, clean arch is almost same as n-tier. Only difference is moving db models (from data) and domain specific logic (from business) into new layer called domain. Only things left are either db specific, and moved to infrastructure or just following process steps, left in application layer.
@ahmetcanyldz7455
@ahmetcanyldz7455 7 місяців тому
They wont reference themselves. Since the infra layer reference to application layer it implements the abstractions of ifra layer methods in the applicstion layer (or the domain layer) and the application layer does the database interaction by using that ifra layer abstractions. The approach is every layer has its own abstractions that implemented in the infra layer about the database interactions, and when something needed from the database, these infra interfaces will be used. By that way, you try to achieve separation of concerns
@mefju08
@mefju08 7 місяців тому
Hi :) Inside the "Result Pattern" section, should "What is the Result Pattern?" be after "Implementing the Result Pattern"? I think you got the order wrong.
@amantinband
@amantinband 7 місяців тому
Yeah not sure how that happened! Should be fixed now 🙂
@adrianspikes6454
@adrianspikes6454 7 місяців тому
Would it be feasible to make http calls to an existing external API? What if ur API contains your domain, can the domain layer be substituted for the API domain? Can the API be a substitute for the presentation layer as well? Thanks for all your hard work and the dedication for disseminating your knowledge to us all. Yourself, Tim Corey, Les Jackson, Chapas and Codewrinkles are a god send for those that love C#.
@amantinband
@amantinband 7 місяців тому
Hey Adrian. The implementation of web clients sit in the infrastructure layer. Your domain, by definition, cannot sit in an external API. I would recommend taking a look at some open source projects that are structured following clean architecture, I think it will give you some clarity around this 🙂
@rusifbudaqov2712
@rusifbudaqov2712 Місяць тому
very useful, thanks
@pyce.
@pyce. 7 місяців тому
Does anyone know what tool he uses for the graphs/diagrams/slides? 😊
@amantinband
@amantinband 7 місяців тому
Diagrams - figma. Slides - obsidian
@pyce.
@pyce. 6 місяців тому
You are the greatest for replying! ❤️
@pianoman1973
@pianoman1973 7 місяців тому
How is this new course different from your own great BuberDinner clean architecture series?
@amantinband
@amantinband 7 місяців тому
The 2 clean architecture courses cover everything from the basics to microservices, error handling, testing, authorization etc' on a different app all together
@nesimtunc
@nesimtunc 2 місяці тому
Thanks!
@bedirhandincer3448
@bedirhandincer3448 Місяць тому
I noticed that some are putting the interfaces for the repository in the domain layer and others in the application layer. What is the correct way?
@deanstewart80
@deanstewart80 7 місяців тому
Just getting started with this and what I can’t find a clear answer on is where database reliant logic lives. If you need to validate that something exists before creating it, is that a domain responsibility or should that kind of logic live in the application layer? I’ve seen examples of injecting services or repositories into the domain layer but that doesn’t feel “clean” at all to me. I’d be interesting know your thoughts?
@amantinband
@amantinband 7 місяців тому
That’s a great topic that I really like discussing and I cover thoroughly in my DDD course. If the logic is simply orchestrating domain objects then it belongs in the application layer. If the logic is business logic/decision then the short answer is: Passing a repository to a domain object and having it fetch another domain object is called a “disconnected domain model”. This is a form of lazy loading and is usually a sign that the domain isn’t modeled correctly. The alternatives are: 1. Introducing a domain object or updating the current design so that all data needed to make the business decision are part of the domain object. 2. Encapsulating the logic in a domain service. The domain service will fetch data from dependencies and orchestrate the domain objects.
@volodymyrliashenko1024
@volodymyrliashenko1024 7 місяців тому
The ONLY difference between N-Tier architecture and Clean architecture is that your interfaces for repository are placed in Application or Business layer instead of data layer (if n-tier application well implemented).
@amantinband
@amantinband 7 місяців тому
That’s incorrect. It’s actually quite common to place repository interfaces on the domain layer. There are similarities between layered and clean architecture but there are also many differences and nuances
@volodymyrliashenko1024
@volodymyrliashenko1024 7 місяців тому
@@amantinband How would it sound correct (in case of repository)?
@stephen9646
@stephen9646 Місяць тому
is there a way to deploy a web api that is built with clean architecture to azure?
@ronaldabellano5643
@ronaldabellano5643 3 місяці тому
The problem with that is, is it okay for the infrastructure layer to point towards the domain layer? How can the DbContext from infrastructure layer travel to Domain layer?
@ademirj
@ademirj Місяць тому
Isn't it correct for the domain layer to have repository interfaces instead of the application layer? The domain services could have behavirous that interact with database by repository interface?
@matteobarbieri2989
@matteobarbieri2989 4 місяці тому
I've always though that architectures are made by people who don't use them. Adding architecture's rule often limit your freedom (and speed) I've just bought your course and it's funny how you break the first rule of clean architecture by referring Infrastructure layer from Presentation layer.
@PankajNikam
@PankajNikam 7 місяців тому
Please add purchase power parity to the courses if possible.
@amantinband
@amantinband 7 місяців тому
My course is part of the dometrain platform so I don't control prices/discounts etc'
@pickle1987
@pickle1987 7 місяців тому
4:25 the answer is the I in S.O.L.I.D: dependency Inversion principle
@sadralatif
@sadralatif 7 місяців тому
Assuming that the reminderId is unique through the whole system, is there any reason for the api endpoint to be: GET users/{userId}/reminders/{reminderId} Instead of: GET users/reminders/{reminderId} We already have the UserId on the Reminder model (am I right?). Can someone clarify this?
@amantinband
@amantinband 7 місяців тому
There are various approaches for designing a RESTful API. I like looking at it like folders where the route is the path to a file. Does that make sense?
@dinhdotdev
@dinhdotdev 3 місяці тому
Just group Application layer and Domain layer into one and call it "Business Logic" layer, then add an abstraction like a repository pattern between Business Logic and Data Access Layer and you will have the same "architecture"
@cognosce6193
@cognosce6193 7 місяців тому
So, to sum up, the one actual difference between clean architecture and 3-tier is that we use an interface of repo instead of the implementation??))))
@MatthijsWagemakers
@MatthijsWagemakers 6 місяців тому
Might seem like that but having a separate domain layer is a world of difference, see 3:01
@lordicemaniac
@lordicemaniac 7 місяців тому
why not have domain object directly in application layer?
@krccmsitp2884
@krccmsitp2884 7 місяців тому
Separation of concerns, and business cases (Application) tend change more frequently than the underlying concept/model (Domain).
@temobaindurashvili444
@temobaindurashvili444 13 днів тому
But how and where you will call Infrastructure layer's DependecyInjection ?
@user-rk2rq9eh5h
@user-rk2rq9eh5h 3 місяці тому
I have a question how do you create a repository implementation in infrastructure without referencing the domain project? 6:41 wouldn’t that mean the infrastructure project would reference the domain?
@BlueHorizonMoments
@BlueHorizonMoments 12 днів тому
You should show the code with practical examples in VS
@tauqirrao4930
@tauqirrao4930 4 місяці тому
Great.!
@iceystyle2-cu1ob
@iceystyle2-cu1ob 4 місяці тому
Can you please teach us how you use your vscode for dotnet i watched your videos you are so fast at navigating anding breakpoint s and how you use vim in vscode I want to learn to use vscode like you please make a video 🥺🥺🥺🥺🥺🥺🥺🥺 And I am sorry i can't purchase your course because I am from India and I am student but you UKposts videos are also so more useful to thank you and i love your content ❤ please keep uploading
@charss5416
@charss5416 23 дні тому
I dont understand it. So we created the services folder to decouple the controller from the database. Then we create a repository to decouple the services from the database. What's the point really? We can keep adding layers of abstraction even between the repository and the data access we can add like 100 more abstraction layers. I don't understand the point.
@user-ol5ll3br6i
@user-ol5ll3br6i 3 місяці тому
I still dont understand one thing. Application layer doesnt depend on presentation layer, cuz if I change presentation layer it wont affect on application. But if i change an implementation in infrastructure it will affect on application. So how does it work? Sorry for bad eng if it is
@depoint2602
@depoint2602 3 місяці тому
Never seen so many boxes and arrows before. To me it's actually a huge distraction. Besides that the video looks nice.
@amantinband
@amantinband 3 місяці тому
Thanks for the feedback. Never occurred to me it may be distracting
@xxapoloxx
@xxapoloxx Місяць тому
You drew a lot of upwards pointing arrows while explaing this my dude, seems like reinventing the wheel to me.
@guillermomazzari8320
@guillermomazzari8320 2 місяці тому
Thanks for the video, I would like to buy your course but 90 bucks, is too much bro, Anyway, good luck!
@ianokay
@ianokay 7 місяців тому
"The application will define some interface for acting with the database" 5:25 "and the outer layers will contain the actual implementation" 5:55 So like... every system ever? Any ORM library which concerns itself with implementation, and the Application is agnostic to how the data is stored or retreived? any "Services file" like Angular has which may use the HTTP library to query the endpoints and not put that logic in the controller? and the controller is agnostic to what the Service is doing to return it data (maybe just mocks, for example)? They all fit that definition. Also, it sounds like your definition of Domain matches the definition of Models or Types
@matildagrobhinde383
@matildagrobhinde383 7 місяців тому
Solution looking for a problem :( Poorly designed/implemented n-tier, is not a problem with n-tier.
@volodymyrliashenko1024
@volodymyrliashenko1024 7 місяців тому
100% agree. But I like to have a data interface in application layer and then implement it in a separate project. This is how I can control and nobody will use some framework everywhere in application.
@deepakbisht4957
@deepakbisht4957 5 місяців тому
Exactly people don't understand SOLID principles and design patterns and then complain about OOPs....
@cesar73silva
@cesar73silva 4 місяці тому
I'm still in the beginning of understanding software architecture, but none of this made any sense. I will go and study more, and in the future will return and review to this comment.
@deepakbisht4957
@deepakbisht4957 5 місяців тому
Only those people who don't understand OOPS, Solid principles and design pattern( creational , behavioural and structural type) complaints about these things These three things have literally the solution for everything. And there is a thing called what your software demands. If your software is basic you don't need too much separation of concerns and modulations and all. It depends on your project size and team and hiw much flexibility you want to give...
@xXCrackFireXx
@xXCrackFireXx Місяць тому
Good explanation but damn you pause a lot while speaking, it makes it super hard to actually listen to you my guy
@amantinband
@amantinband Місяць тому
Between sentences? Or as part of the sentence? Would you have preferred a cut there or for me to pause for less time? Lmk so I can improve 🫶🏼
@ianrust3785
@ianrust3785 4 місяці тому
sorry but I just don't see a good justification for having the database layer above the application layer. You can define an interface for / abstract the database wherever it sits.
5 Design Patterns That Are ACTUALLY Used By Developers
9:27
Alex Hyett
Переглядів 139 тис.
Clean Architecture Project Setup From Scratch With .NET 7
12:02
Milan Jovanović
Переглядів 105 тис.
船长被天使剪成光头了?#天使 #小丑 #超人不会飞
00:28
超人不会飞
Переглядів 15 млн
Clean Architecture IS about Vertical Slicing, actually!
15:24
About Clean Code
Переглядів 29 тис.
Microservices Explained in 5 Minutes
5:17
5 Minutes or Less
Переглядів 661 тис.
What is Clean Code? with "Uncle Bob" Robert C. Martin
12:07
The Data Science Channel
Переглядів 8 тис.
Clean Architecture vs Domain-Driven Design (DDD) - Understand the Difference
11:26
Clean Architecture with ASP.NET Core 8 | .NET Conf 2023
29:17
dotnet
Переглядів 176 тис.
Every Single LINQ Extension Method With Examples | .NET & C# Essentials
42:28
Amichai Mantinband
Переглядів 28 тис.
Everything You NEED to Know About Client Architecture Patterns
5:51
ByteByteGo
Переглядів 196 тис.
Dependency Injection, The Best Pattern
13:16
CodeAesthetic
Переглядів 706 тис.
Infrared Soldering Iron from Cigarette Lighter
0:58
ALABAYCHIC
Переглядів 1,8 млн
Обзор Nothing ear (3) и ear (a) - ПРОРЫВ за $100
17:34