Home > Back-end >  What's the name of this project structure?
What's the name of this project structure?

Time:09-30

I was looking for some project structures for learning and found this one, I know that it's the recommended but couldn't find it's name. enter image description here

CodePudding user response:

I would say it’s “package by feature”: it's about keeping all code related to a given a feature in the the same package.

It contrasts with the “package by layer” approach, which groups all the code by layers and technical concerns.

  • Related