Table of Contents
AOP, Aspect Oriented Programming, it is a technique which extracts the common logic distributed in two or more classes, and is woven in from the outside of a class.
Advice(MethodInterceptor).
Advice expresses the code inserted into a program. Advice may be called Interceptor.
Joinpoint(MethodInvocation).
Joinpoint expresses the point which combines target class and Advice. Advice can get method arguments or information of the method from Joinpoint.
Pointcut.
Pointcut defines where Joinpoint is set up.
Aspect.
Aspect associates Advice and Pointcut.
© Copyright The Seasar Foundation and the others 2005-2010, all rights reserved. |