spring aop 记录
参考:
aop概念和例子(详细):
http://blog.csdn.net/Matol/article/details/6096058
http://hi.baidu.com/rainfling/blog/item/d289e26fc2f2fbd381cb4af9.html
http://chenjumin.iteye.com/blog/364973
AOP例子:
http://pandonix.iteye.com/blog/336873
advisor 策略 是通过切入点 找到符合条件的方法 再根据策略 进行相应方法的事务控制
而aop:aspect 是根据切入点找到符合条件的方法 然后再根据切面的类型来适时的执行引入bean的方法
配置文件:
package sytcun;import java.lang.reflect.Method;import org.springframework.aop.MethodBeforeAdvice;public class InterceptorClass implements MethodBeforeAdvice{public void before() {System.out.println("hello world execute");}public void beforeAdvice() {System.out.println("hello world execute --aop:config方式");}public void before(Method arg0, Object[] arg1, Object arg2)throws Throwable {System.out.println("hello world execute --自动代理方式");}}