Hexagonal, Onion & Clean Architecture

Поділитися
Вставка
  • Опубліковано 12 чер 2024
  • Three similar software architectures explained.
    00:00 N-Tier Inversion
    01:04 Hexagonal Architecture
    01:50 Onion Architecture
    02:58 Clean Architecture
    Hexagonal Architecture - alistair.cockburn.us/hexagona...
    Onion Architecture - jeffreypalermo.com/2008/07/th...
    Clean Architecture - blog.cleancoder.com/uncle-bob...
  • Наука та технологія

КОМЕНТАРІ • 48

  • @ravelinxx
    @ravelinxx Рік тому +71

    Finally understood difference between these types of architectures, best video I have found until now.

  • @larsleo7059
    @larsleo7059 8 місяців тому +6

    This was by far the best video about hexagonal architecture i have seen. Good job!

  • @8bitiro
    @8bitiro Рік тому +5

    This has to be the best visual and explanatory video on the topic, thank you!

  • @creamyhorror
    @creamyhorror Рік тому +12

    Finally a clean and direct presentation of concepts. Love it, though I'll definitely need good implementation examples of onion and clean architectures to understand them.

  • @janmeppe
    @janmeppe Рік тому +6

    Honestly one of the best series of boxes I've ever seen :)

  • @s1eepr709
    @s1eepr709 11 місяців тому +1

    This is the best youtube channel i've ever found that explains things very clearly
    Thank you!

  • @zumazumy2257
    @zumazumy2257 Рік тому +3

    The best video ever describing how the architecture evolves .. Thumps up, bro

  • @nettoaoquadrado
    @nettoaoquadrado Рік тому +1

    Cara, muitíssimo obrigado pelo trabalho. Sou um Dev. Júnior no Brasil e seu vídeo me ajudar pra caramba a entender os conceitos!

  • @Solovier
    @Solovier 4 місяці тому

    This is the most well explained video of these architectures I always searched for. How this has so low views and likes OMG??

  • @gary6lin
    @gary6lin Рік тому

    The best video explains the concept in 5 minutes.

  • @caseyspaulding
    @caseyspaulding 7 місяців тому +1

    Bravo! So well explained and produced. Thank you.

  • @altmystery
    @altmystery 9 місяців тому +1

    Thank you, excellent video. I have been searching for simple explanation of different layered architectures

  • @Mortlessness
    @Mortlessness Рік тому

    Good, simple and concise explanation.

  • @MohamedEmaish
    @MohamedEmaish 10 місяців тому

    Best description i’ve ever seen

  • @joseavilasg
    @joseavilasg 2 місяці тому

    I can't believe it. Best explanation ever.

  • @farooqmss
    @farooqmss 7 місяців тому

    inarguably one of the best explanation on this architecture, music though

  • @vitorsantana2795
    @vitorsantana2795 2 місяці тому

    What an absolutely fantastic material!! Thanks a lot for this :)

  • @almeanawy
    @almeanawy 2 місяці тому

    رائع .... حقيقي رائع !

  • @JedaiasRodrigues7
    @JedaiasRodrigues7 3 місяці тому

    I'm happy to be learning English and being able to enjoy incredible content like this!
    Thank you very much for sharing your knowledge, you have many skills! Congratulations on your genius.
    For the good of humanity, please continue.

    • @marcelusmeridius
      @marcelusmeridius Місяць тому +1

      Sabia que era BR. Caraca, impressionante a explicação sobre as arquiteturas.

  • @pedrofaria7322
    @pedrofaria7322 Рік тому

    That's a wonderful video. Thanks a lot for this.

  • @alan-
    @alan- Рік тому +2

    This channel rocks

  • @hakantutkun
    @hakantutkun Рік тому +1

    Best explanation ever. Thanks :)

  • @nadzhafox
    @nadzhafox 6 місяців тому

    Visual explanation is great!

  • @alibabarahaei2229
    @alibabarahaei2229 Місяць тому +1

    perfect♥

  • @desdrianton5993
    @desdrianton5993 Рік тому

    Best video... Thank you

  • @alexvgc6170
    @alexvgc6170 Рік тому

    best video. Now I understand the difference. :)

  • @khyrian1356
    @khyrian1356 Рік тому

    Life is so much better with sketches ..

  • @VidozMusic
    @VidozMusic Рік тому

    Great video!

  • @DaemonGenius
    @DaemonGenius 10 місяців тому +1

    How is there only 6 videos.. @DrawingBoxes.... Your videos are amazing. So simple I love it

    • @drawingboxes
      @drawingboxes  10 місяців тому +3

      Glad you're enjoying them! More video coming soon - I'm planning to delve into some agile and DevOps topics next

  • @ondrejhoos142
    @ondrejhoos142 Рік тому

    Thank you!

  • @swimmerboxer
    @swimmerboxer Рік тому

    nice

  • @alexandrusafronovici9734
    @alexandrusafronovici9734 Рік тому

    THE BEST 👌 ONE

  • @jeanjagnow2524
    @jeanjagnow2524 Рік тому

    Nice! Into project having multiple integrations with many apis, this case the integrations modules is adapter?
    Example:
    Adapter.Integrations.Service1
    Adapter.Integrations.Service2
    Adapter.Integrations.Service3

    • @drawingboxes
      @drawingboxes  Рік тому

      Only if the integrations module has a reference to the application core and those integration services implement 'port' interfaces defined in the core. Not if the application core references the integrations module and directly makes calls to it

  • @alibabarahaei2229
    @alibabarahaei2229 Місяць тому

    best

  • @yosiyosiro3866
    @yosiyosiro3866 11 місяців тому

    Really good explanation for the hexagonal. Until now i am still confused with the onion layer diagram means. Why the infrastructure layer (data access, email, etc) position should be there? If the depencency is inward, it would not make any sense if data access depends on App Service, then App Service depends on Domain Service, then Domain Service depends on Domain.

    • @drawingboxes
      @drawingboxes  11 місяців тому

      Thanks! For the onion architecture, as an example, you could put an IRepository interface in your Domain Services layer. Your App Service layer can use the IRepository to make changes, and your Data Access layer can implement an adapter for IRepository because it has a 'transitive dependency' to that layer going through the App Service layer

    • @yosiyosiro3866
      @yosiyosiro3866 11 місяців тому

      @@drawingboxes I see. It is using the same Dependency Inversion explanation in the beginning of video. Onion diagram not intuitive for me. I still need to digging deeper to understand it.

  • @abdulgaffarabdulmalik4333
    @abdulgaffarabdulmalik4333 Рік тому

    This seems to come with a Mix of DDD - Domain Services......

  • @Pentatonic_Hardcore
    @Pentatonic_Hardcore 3 місяці тому +1

    very difficult to understand, still can't get the point

  • @dvPro-bq9oh2ll1b
    @dvPro-bq9oh2ll1b Рік тому

    Application is not necessarily enterprise business.
    "Enterprise business" is buzzword and should not be used in the context of software design.

  • @clashclan4739
    @clashclan4739 Рік тому +8

    Every educational content creators should know background music is totally not required. It is distracting and annoying.

    • @alan-
      @alan- Рік тому +2

      Get more sleep, you'll concentrate better and not be uptight :)

    • @randall.chamberlain
      @randall.chamberlain Місяць тому

      Every converter on UA-cam should phrase their personal preferences as their own and not make a generic statement.

  • @usamesavas9848
    @usamesavas9848 Рік тому +2

    Please please please stop putting music in this kind of videos pleaseee