1.写一个切面类:SecurityControl,其中有个方法
public class SecurityControl {
private void checkSecurity(JoinPoint joinPoint) {
Object[] obj =joinPoint.getArgs();
for(int i=0;i<obj.length;i++){
System.out.println(obj[i]);
}
System.out.println("方法: "+joinPoint.getSignature().getName());
System.out.println("目标: "+joinPoint.getTarget().getClass());
System.out.println("----------checkSecurity()---------------");
}
}
2.为了添加对aop标签支持,applicationContext同样要改为:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
<bean id="security" class="com.hxz.springaop.SecurityControl"/>
<aop:config>
<aop:aspect id="sec" ref="security">
<aop:pointcut id="allAddMethod" expression="execution(* com.hxz.daoimpl.NameDaoImpl.get*(..))"/>
<aop:before method="checkSecurity" pointcut-ref="allAddMethod"/>
</aop:aspect>
</aop:config>
3.spring对AOP的支持
1、如果目标对象实现了接口,默认情况下会采用JDK的动态代理实现AOP
2、如果目标对象实现了接口,可以强制使用CGLIB实现AOP
3、如果目标对象没有实现了接口,必须采用CGLIB库,spring会自动在JDK动态代理和CGLIB之间转换
如何强制使用CGLIB实现AOP?
* 添加CGLIB库,SPRING_HOME/cglib/*.jar
* 在spring配置文件中加入<aop:aspectj-autoproxy proxy-target-class="true"/>
JDK动态代理和CGLIB字节码生成的区别?
* JDK动态代理只能对实现了接口的类生成代理,而不能针对类
* CGLIB是针对类实现代理,主要是对指定的类生成一个子类,覆盖其中的方法
因为是继承,所以该类或方法最好不要声明成final