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(Interceptor).
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 acquire the information on an argument or a method from Joinpoint.
Pointcut.
Pointcut defines where Joinpoint is set up.
Aspect.
Aspect associates Advice and Pointcut.
© Copyright The Seasar Foundation and the others 2008-2009, all rights reserved. |