spring对AOP的支持
1、如果目标对象实现了接口,默认情况下会采用JDK的动态代理实现AOP
2、如果目标对象实现了接口,可以强制使用CGLIB实现AOP
3、如果目标对象没有实现接口,必须采用CGLIB库,spring会自动在JDK动态代理和CGLIB之间转换
如何强制使用CGLIB实现AOP?
1.创建一个java项目,并加入Spring的依赖库
* SPRING_HOME/dist/spring.jar
* SPRING_HOME/lib/jakarta-commons/commons-logging.jar
* SPRING_HOME/lib/log4j/log4j-1.2.15.jar
* SPRING_HOME/lib/aspectj/*.jar
* SPRING_HOME/lib/cglib/*.jar
2.目标对象(没有实现接口)
package com.yx.zzg;
public class UserManageImpl {
public void add(String username, String password) {
System.out.println("-------add--------------");
}
public void delete(int id) {
System.out.println("-------delete--------------");
}
public String modify(int id) {
System.out.println("-------modify--------------");
return null;
}
public void update(int id) {
System.out.println("----------update--------------");
}
}
3.定义切面类
package com.yx.zzg;
import org.aspectj.lang.JoinPoint;
public class SecurityHandler {
private void checkSecurity(JoinPoint joinPoint) {
//获取方法参数
Object[] args = joinPoint.getArgs();
for (int i = 0; i < args.length; i++) {
System.out.println(args[i]);
}
//获取方法名
System.out.println(joinPoint.getSignature().getName());
System.out.println("----------checkSecurity()----------");
}
}
4.在项目的src目录下新建一个applicationContext.xml文件,在此文件中加入
<?xml version="1.0" encoding="UTF-8"?>
<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.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<!-- 如果目标对象实现了接口强制使用CGLIB库,目标对象没有实现接口,则不需加入这一句 -->
<!--
<aop:aspectj-autoproxy proxy-target-class="true" />
-->
<!-- 将Aspect类配置到IOC容器中 -->
<bean id="securityHandler" class="com.yx.zzg.SecurityHandler" />
<!-- 将目标对象配置到IOC容器中 -->
<bean id="userManage" class="com.yx.zzg.UserManageImpl" />
<!-- 配置AOP -->
<aop:config>
<!-- 定义一个切面,并指定切面类,该切面类包含一个Pointcut和一个Advice -->
<aop:aspect id="security" ref="securityHandler">
<!-- 定义Pointcut -->
<aop:pointcut id="allAddMethod"
expression="execution(* com.yx.zzg.UserManageImpl.add*(..))" />
<!-- 定义Advice,并制定应用到哪个Pointcut上 -->
<aop:before method="checkSecurity"
pointcut-ref="allAddMethod" />
</aop:aspect>
</aop:config>
</beans>
5.客户端调用
package com.yx.zzg;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Client {
public static void main(String[] args) {
BeanFactory factory=new ClassPathXmlApplicationContext("applicationContext.xml");
UserManageImpl userManage=(UserManageImpl)factory.getBean("userManage");
userManage.add("aaa", "aaa");
//userManage.delete(1);
}
}