Il progetto, ho coinvolto, ha una struttura di file / cartelle di un progetto orientato all'architettura:
Root
|____ Node1
|____ Event Handlers
| |___ <all event handlers of project>
|____ Events
| |___ <all events of project>
|____ Request Handlers
| |___ <all request handlers of project>
|____ Requests
| |___ <all requests of project>
|____ ...
È chiaro dal punto di vista architettonico del sistema (è stato proposto dal team di sviluppo).
È una struttura orientata alle funzionalità proposta dal team di designer:
Root
|____ Feature #1
|____ Event Handlers
| |___ <all event handlers of Feature #1>
|____ Events
| |___ <all events of Feature #1>
|____ Request Handlers
| |___ <all request handlers of Feature #1>
|____ Requests
| |___ <all requests of Feature #1>
|____ ...
Questa variante è più vicina ai progettisti e descrive chiaramente una caratteristica da implementare.
Le nostre squadre hanno iniziato una guerra santa: qual è l'approccio migliore. Qualcuno potrebbe aiutarci e spiegare i pro ei contro del primo e del secondo. Forse ce n'è un terzo che è più utile e benefico per entrambi.
Grazie.