Tuesday, July 16, 2024

Spring AOP in 5mins - Interview refresh

 Spring AOP support Aspect J programming: working on only spring beans only.  Aspect J works on all the java object

cross-cutting concerns - Logging, security

What is a join point? - result for executed method

What is a advice? - what we code we want to execute

What is a pointcut?  - when you want to apply 

What is an aspect? advice + pointcut

weaving - make sure aspects executed correctly

Weaver - before, after returning, after(finally), around, after throwing,


No comments: