🎴 Flashcard Mode
Software Design Patterns and Java Frameworks
Card1 / 20
Mastered0
Review0
QuestionClick to flip
What is an aspect?
AnswerClick to flip back
A
A Java class encapsulating one or more advices.
💡 Explanation:
In Aspect-Oriented Programming (AOP), particularly in Spring AOP, an aspect is a modularization of a concern that cuts across multiple objects, typically implemented as a regular Java class annotated or configured to encapsulate advices and pointcuts. The other options describe inheritance, interface implementation, or specific framework capabilities.