Cross-cutting concern
From Wiki @ Karl Jones dot com
In aspect-oriented software development, cross-cutting concerns are aspects of a computer program that affect other concerns.
Description
These concerns often cannot be cleanly decomposed from the rest of the system in both the design and implementation, and can result in either scattering (code duplication), tangling (significant dependencies between systems), or both.
For instance, if writing an application for handling medical records, the indexing of such records is a core concern, while logging a history of changes to the record database or user database, or an authentication system, would be cross-cutting concerns since they interact with more parts of the program.
See also
- Aspect (computer programming)
- Aspect-oriented programming
- Aspect-oriented software development
- Code refactoring (restructuring software)
- Database normalization (minimize needlessly replicated data)
- Concern (computer science)
- Multiple inheritance
- Microservices
- Orthogonalization (mathematical normalization)
- Separation of concerns
External links
- Cross-cutting concern @ Wikipedia