Spring AOP
什么是AOP 1、AOP为Aspect Oriented Programming的缩写,意为:面向切面编程。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。 2、不通过更改源代码,在主干功能添加新的功能
AOP底层原理
1、AOP底层使用动态代理 (1)有接口情况,使用JDK动态代理
创建接口实现类代理对象,增加类的方法
(2)无接口情况,使用CGLIB动态代理
创建子类的代理对象,增加类的方法
提示:以下是本篇文章正文内容,下面案例可供参考
一、JDK动态代理
1、使用JDK动态代理,使用PRoxy类里面的方法创建代理对象
(1)调用newProxyInstance方法
newProxyInstance(ClassLoader loader,类<?>[] interfaces, InvocationHandler h)
方法的三个参数
- 类加载器
- 增强方法所在的类,这个类实现的接口,支持多个接口
- 实现这个接口InvocationHandler,创建代理对象,写增强方法
2、编写JDK动态代理代码
(1)创建接口,定义方法
(2)创建接口实现类,实现方法
(3)使用Proxy类创建接口代理对象
(1)创建接口,定义方法
public interface UserDao {
public int add(int a,int b);
public String update(String id);
}
(2)创建接口实现类,实现方法
public class UserDaoImpl implements UserDao{
@Override
public int add(int a, int b) {
return a+b;
}
@Override
public String update(String id) {
return id;
}
}
(3)使用Proxy类创建接口代理对象
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.Arrays;
public class JDKProxy {
public static void main(String[] args) {
Class[] interfaces = {UserDao.class};
UserDaoImpl userDao = new UserDaoImpl();
UserDao dao= (UserDao) Proxy.newProxyInstance(JDKProxy.class.getClassLoader(),interfaces,new UserDaoProxy(userDao));
int result= dao.add(1,2);
System.out.println("result"+result);
}
}
class UserDaoProxy implements InvocationHandler{
private Object obj;
public UserDaoProxy(Object obj){
this.obj=obj;
}
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
System.out.println("方法之前..."+method.getName()+"传递参数"+ Arrays.toString(args));
Object res = method.invoke(obj,args);
System.out.println("方法之后..."+obj);
return res;
}
}
AOP(术语)
1、连接点
类里面那些方法可以被增强,这些方法就被称为连接点
class User{
add();
update();
select();
delete();
}
上述四个都可为连接点
2、切入点
实际真正被增强的方法成为切入点
3、通知(增强)
(1)实际被增强的部分称为通知
(2)通知有多种类型
-前置通知
-后置通知
-环绕通知
-异常通知
-最终通知
4、切面
(1)把通知应用到切入点的过程叫切面
AOP操作(准备)
1、Spring框架中一般基于AspectJ实现AOP操作
(1)什么是AspectJ
AspectJ不是Spring组成部分,独立AOP框架,
一般把AspectJ和Spring框架一起使用,进行AOP操作
2、基于AspectJ实现AOP操作
(1)基于XML配置文件实现
(2)基于注解方式实现(使用)
3、在项目刚才李引入AOP相关依赖
4、切入点表达式
重点 (1)切入点表达式作用:知道对哪个类里面的哪个方法进行增强 (2)语法结构:
execution( [权限修饰符] [返回类型] [类全路径] [方法名称] ([参数列表]))
举例1: 对com.ke.dao.BookDao类里面的add进行增强
execution(* com.ke.dao.BookDao.add(..))
举例2: 对com.ke.dao.BookDao类里面的所有进行增强
execution(* com.ke.dao.BookDao.*(..))
举例2: 对com.ke.dao包里面的所有类,所有方法进行增强
execution(* com.ke.dao.*.*(..))
AOP操作(ASpectJ注解)
1、创建类,在类里面定义方法
public class User {
public void add() {
System.out.println("add.....");
}
}
2、创建增强类(编写增强逻辑)
(1)在增强类里面,创建方法,让不同方法代表不同通知类型
public class UserProxy {
public void before(){
System.out.println("before....");
}
}
3、进行通知的配置
(1)在Spring配置文件中,开启注解扫描
<?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:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<context:component-scan base-package="com.ke.aop"></context:component-scan>
</beans>
(2)使用注解创建User和UserProxy对象
@Component
public class User {
@Component
public class UserProxy {
(3)在增强类上面添加注解@Aspect
@Component
@Aspect
public class UserProxy {
(4)在Spring配置文件中开启生成代理对象
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
4、配置不同类型的通知
(1)在增强类的里面,在作为通知方法上面添加通知类型注解,使用切入点表达式配置
@Component
@Aspect
public class UserProxy {
@Before(value="execution(* com.ke.aop.User.add(..))")
public void before(){
System.out.println("before....");
}
@After(value="execution(* com.ke.aop.User.add(..))")
public void after(){
System.out.println("after....");
}
@AfterReturning(value="execution(* com.ke.aop.User.add(..))")
public void afterReturning(){
System.out.println("AfterReturning....");
}
@AfterThrowing(value="execution(* com.ke.aop.User.add(..))")
public void afterThrowing(){
System.out.println("AfterThrowing....");
}
@Around(value="execution(* com.ke.aop.User.add(..))")
public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable{
System.out.println("Around..环绕之前..");
proceedingJoinPoint.proceed();
System.out.println("Around..环绕之后..");
}
}
测试:
public class TestAop {
@Test
public void testAop(){
ApplicationContext context=new ClassPathXmlApplicationContext("bean.xml");
User user=context.getBean("user",User.class);
user.add();
}
5、对相同的切入点进行抽取
@Component
@Aspect
public class UserProxy {
@Pointcut(value="execution(* com.ke.aop.User.add(..))")
public void pointdemo(){
}
@Before(value="pointdemo()")
public void before(){
System.out.println("before....");
}
}
6、有多个增强类对同一个方法进行增强,可以设置优先级
(1)在增强类上面添加注解@Order(数值)
-数值越小 优先级越高
7、完全使用注解开发
(1)创建配置类,不需要创建xml文件
@Configuration
@ComponentScan(basePackages = {"com.ke.aopxml"})
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class Config {
}
AOP操作(ASpectJ配置文件)
很少使用 1、创建两个类,增强类和被增强类,创建方法
public class Book {
public void buy(){
System.out.println("buy...");
}
}
public class BookProxy {
public void before(){
System.out.println("before....");
}
}
2、在Spring配置文件中创建两个类对象
<bean id="book" class="com.ke.aopxml.Book"></bean>
<bean id="bookProxy" class="com.ke.aopxml.BookProxy"></bean>
3、在Spring配置文件中配置切入点
<aop:config>
<aop:pointcut id="p" expression="execution(* com.ke.aopxml.Book.buy(..))"/>
<aop:aspect ref="bookProxy">
<aop:before method="before" pointcut-ref="p"></aop:before>
</aop:aspect>
</aop:config>
AOP结束!
|