Spring - AOP之传统手动代理

简介: Spring - AOP之传统手动代理

一、AOP之传统手动代理——不带切入点的切面

image.pngimage.pngimage.pngimage.pngimage.png

packagecom.imooc.aop.demo3;
publicinterfaceStudentDao {
publicvoidfind();
publicvoidsave();
publicvoidupdate();
publicvoiddelete();
}
packagecom.imooc.aop.demo3;
publicclassStudentDaoImplimplementsStudentDao {
publicvoidfind() {
System.out.println("学生查询...");
    }
publicvoidsave() {
System.out.println("学生保存...");
    }
publicvoidupdate() {
System.out.println("学生修改...");
    }
publicvoiddelete() {
System.out.println("学生删除...");
    }
}
packagecom.imooc.aop.demo3;
importorg.springframework.aop.MethodBeforeAdvice;
importjava.lang.reflect.Method;
publicclassMyBeforeAdviceimplementsMethodBeforeAdvice {
publicvoidbefore(Methodmethod, Object[] args, Objecttarget) throwsThrowable {
System.out.println("前置增强======================");
    }
}
<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><!--配置目标类--><beanid="studentDao"class="com.imooc.aop.demo3.StudentDaoImpl"/><!--前置通知类型--><beanid="myBeforeAdvice"class="com.imooc.aop.demo3.MyBeforeAdvice"/><!--Spring的AOP产生代理对象--><beanid="studentDaoProxy"class="org.springframework.aop.framework.ProxyFactoryBean"><!--配置目标类--><propertyname="target"ref="studentDao"/><!--实现的接口--><propertyname="proxyInterfaces"value="com.imooc.aop.demo3.StudentDao"/><!--采用拦截的名称--><propertyname="interceptorNames"value="myBeforeAdvice"/><propertyname="optimize"value="true"></property></bean></beans>
packagecom.imooc.aop.demo3;
importorg.junit.Test;
importorg.junit.runner.RunWith;
importorg.springframework.test.context.ContextConfiguration;
importorg.springframework.test.context.junit4.SpringJUnit4ClassRunner;
importjavax.annotation.Resource;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
publicclassSpringDemo3 {
// @Resource(name="studentDao")@Resource(name="studentDaoProxy")
privateStudentDaostudentDao;
@Testpublicvoiddemo1(){
studentDao.find();
studentDao.save();
studentDao.update();
studentDao.delete();
    }
}
运行结果:前置增强======================学生查询...
前置增强======================学生保存...
前置增强======================学生修改...
前置增强======================学生删除...

二、AOP之传统手动代理——带切入点的切面image.png

packagecom.imooc.aop.demo4;
publicclassCustomerDao {
publicvoidfind(){
System.out.println("查询客户...");
    }
publicvoidsave(){
System.out.println("保存客户...");
    }
publicvoidupdate(){
System.out.println("修改客户...");
    }
publicvoiddelete(){
System.out.println("删除客户...");
    }
}
<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><!--配置目标类============--><beanid="customerDao"class="com.imooc.aop.demo4.CustomerDao"/><!--配置通知==============--><beanid="myAroundAdvice"class="com.imooc.aop.demo4.MyAroundAdvice"/><!--一般的切面是使用通知作为切面的,因为要对目标类的某个方法进行增强就需要配置一个带有切入点的切面--><beanid="myAdvisor"class="org.springframework.aop.support.RegexpMethodPointcutAdvisor"><!--pattern中配置正则表达式:.任意字符*任意次数--><!--<propertyname="pattern"value=".*save.*"/>--><propertyname="patterns"value=".*save.*,.*delete.*"/><propertyname="advice"ref="myAroundAdvice"/></bean><!--配置产生代理--><beanid="customerDaoProxy"class="org.springframework.aop.framework.ProxyFactoryBean"><propertyname="target"ref="customerDao"/><propertyname="proxyTargetClass"value="true"/><propertyname="interceptorNames"value="myAdvisor"/></bean></beans>
packagecom.imooc.aop.demo4;
importorg.aopalliance.intercept.MethodInterceptor;
importorg.aopalliance.intercept.MethodInvocation;
publicclassMyAroundAdviceimplementsMethodInterceptor {
publicObjectinvoke(MethodInvocationinvocation) throwsThrowable {
System.out.println("环绕前增强===================");
Objectobj=invocation.proceed();
System.out.println("环绕后增强===================");
returnobj;
    }
}
运行结果:查询客户...
环绕前增强===================保存客户...
环绕后增强===================修改客户...
环绕前增强===================删除客户...
环绕后增强===================
目录
相关文章
|
3天前
|
XML Java 数据安全/隐私保护
Spring Aop该如何使用
本文介绍了AOP(面向切面编程)的基本概念和术语,并通过具体业务场景演示了如何在Spring框架中使用Spring AOP。文章详细解释了切面、连接点、通知、切点等关键术语,并提供了完整的示例代码,帮助读者轻松理解和应用Spring AOP。
Spring Aop该如何使用
|
23天前
|
存储 缓存 Java
Spring高手之路23——AOP触发机制与代理逻辑的执行
本篇文章深入解析了Spring AOP代理的触发机制和执行流程,从源码角度详细讲解了Bean如何被AOP代理,包括代理对象的创建、配置与执行逻辑,帮助读者全面掌握Spring AOP的核心技术。
30 3
Spring高手之路23——AOP触发机制与代理逻辑的执行
|
8天前
|
Java Spring
[Spring]aop的配置与使用
本文介绍了AOP(面向切面编程)的基本概念和核心思想。AOP是Spring框架的核心功能之一,通过动态代理在不修改原代码的情况下注入新功能。文章详细解释了连接点、切入点、通知、切面等关键概念,并列举了前置通知、后置通知、最终通知、异常通知和环绕通知五种通知类型。
21 1
|
4天前
|
安全 Java 测试技术
Java开发必读,谈谈对Spring IOC与AOP的理解
Spring的IOC和AOP机制通过依赖注入和横切关注点的分离,大大提高了代码的模块化和可维护性。IOC使得对象的创建和管理变得灵活可控,降低了对象之间的耦合度;AOP则通过动态代理机制实现了横切关注点的集中管理,减少了重复代码。理解和掌握这两个核心概念,是高效使用Spring框架的关键。希望本文对你深入理解Spring的IOC和AOP有所帮助。
9 0
|
1月前
|
Java 编译器 Spring
Spring AOP 和 AspectJ 的区别
Spring AOP和AspectJ AOP都是面向切面编程(AOP)的实现,但它们在实现方式、灵活性、依赖性、性能和使用场景等方面存在显著区别。‌
54 2
|
1月前
|
XML Java 数据格式
Spring的IOC和AOP
Spring的IOC和AOP
44 0
|
2月前
Micronaut AOP与代理机制:实现应用功能增强,无需侵入式编程的秘诀
AOP(面向切面编程)能够帮助我们在不修改现有代码的前提下,为应用程序添加新的功能或行为。Micronaut框架中的AOP模块通过动态代理机制实现了这一目标。AOP将横切关注点(如日志记录、事务管理等)从业务逻辑中分离出来,提高模块化程度。在Micronaut中,带有特定注解的类会在启动时生成代理对象,在运行时拦截方法调用并执行额外逻辑。例如,可以通过创建切面类并在目标类上添加注解来记录方法调用信息,从而在不侵入原有代码的情况下增强应用功能,提高代码的可维护性和可扩展性。
60 1
|
10天前
|
安全 Java 编译器
什么是AOP面向切面编程?怎么简单理解?
本文介绍了面向切面编程(AOP)的基本概念和原理,解释了如何通过分离横切关注点(如日志、事务管理等)来增强代码的模块化和可维护性。AOP的核心概念包括切面、连接点、切入点、通知和织入。文章还提供了一个使用Spring AOP的简单示例,展示了如何定义和应用切面。
43 1
什么是AOP面向切面编程?怎么简单理解?
|
14天前
|
XML Java 开发者
论面向方面的编程技术及其应用(AOP)
【11月更文挑战第2天】随着软件系统的规模和复杂度不断增加,传统的面向过程编程和面向对象编程(OOP)在应对横切关注点(如日志记录、事务管理、安全性检查等)时显得力不从心。面向方面的编程(Aspect-Oriented Programming,简称AOP)作为一种新的编程范式,通过将横切关注点与业务逻辑分离,提高了代码的可维护性、可重用性和可读性。本文首先概述了AOP的基本概念和技术原理,然后结合一个实际项目,详细阐述了在项目实践中使用AOP技术开发的具体步骤,最后分析了使用AOP的原因、开发过程中存在的问题及所使用的技术带来的实际应用效果。
39 5
|
1月前
|
Java 容器
AOP面向切面编程
AOP面向切面编程
38 0
下一篇
无影云桌面