Linked Questions
10 questions linked to/from Where should I place configuration classes in Onion Architecture
55
votes
5
answers
32k
views
Is "Clean Architecture" by Bob Martin a rule of thumb for all architectures or is it just one of the options?
I really liked the concepts in the video The Principles of Clean Architecture by Uncle Bob Martin. But I feel like this pattern is like a combination of Abstract Factory and Builder patterns at its ...
2
votes
2
answers
6k
views
Are CQRS and Hexagonal Architecture incompatible?
I am beginning a project and I was wondering If I can use CQRS and Hexagonal architecture in the same project, or in fact they are incompatible.
I read about CQRS and some people agree that it is not ...
4
votes
2
answers
2k
views
Is observer pattern abandoned by the industry now (2019)? [closed]
While working on a refactoring task of a legacy app, I came across a scenario where a series of cause->effect type events are happening and currently everything is being handled inline.
To give you ...
5
votes
4
answers
693
views
Is this too much for a modular monolith system? [closed]
A little background before I ask my questions. I've designed a system as an architect based on the requirements given to me by the client. The client has a team or two to three developers which are ...
2
votes
2
answers
3k
views
Where to place a common database connection in clean architecture?
I am currently trying to follow the clean architecture approach but i wonder where common things like a database connections should take place.
Since i think a database connection usually will be ...
-1
votes
2
answers
1k
views
Best Practice for Integrating Domain Services with Infrastructure Layer in Clean Architecture [closed]
I'm currently implementing clean architecture in my project.
My application includes various types of communication protocols (TCP, HTTPS, etc.) implemented in the infrastructure layer.
These ...
1
vote
1
answer
410
views
Is it within Ports And Adapters architecture to have adapters constructed in the Application Layer?
I am writing a service and a library that I need to make framework agnostic because it will be used by some client services. The client services will be written in both Micronaut and Spring frameworks....
0
votes
2
answers
462
views
Will FSM be a good solution?
At work, we are creating an android app. We have a business logic module for talking to an API for CRUD operations. The app I'm working on, the UI module, speaks to the business logic module to create,...
1
vote
1
answer
647
views
In which layer should I load views on a Clean(ish) architecture?
I am trying to organize my architecture following the clean architecture while using some common practices/frameworks. I'm writing in PHP, but have no problem with other languages. The flow of my app ...
0
votes
1
answer
741
views
Am I breaking some Onion Architecture rule?
Based on the project structure below i will have some questions
Domain Layer
1) MyApp.Domain.Entities (DLL)
Product.cs
PagedResult.cs
Referentes
No References
2) MyApp.Domain.Interfaces (DLL)
...