Question 1: SPRING BOOT AOP - Core Concept
What is the main purpose of AOP in Spring Boot?
Question 2: SPRING BOOT AOP - Key Terminology
In Spring AOP, what does the term Join Point refer to?
Question 3: SPRING BOOT AOP - Advice Types
Which of the following is not a valid advice type in Spring AOP?
Question 4: SPRING BOOT AOP - Code Snippet (Before Advice)
What does this aspect do?
Question 5: SPRING BOOT AOP - Pointcut Expressions
Which pointcut expression matches all methods in all classes under com.app.repository package?
Question 6: SPRING BOOT AOP - Code Snippet (Around Advice)
What does this @Around advice do?
Question 7: SPRING BOOT AOP - Code Snippet (AfterThrowing)
What is the purpose of this advice?
Question 8: SPRING BOOT AOP - Proxy Mechanism
How does Spring AOP implement aspects internally by default?
Question 9: SPRING BOOT AOP - Aspect Ordering
If multiple aspects apply to the same join point, how can their execution order be controlled?
Question 10: SPRING BOOT AOP - Code Snippet (Reusing Pointcut)
What does the following code achieve?