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.
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.