- 浏览: 184876 次
- 性别:
- 来自: 青岛
文章分类
- 全部博客 (117)
- java基础知识 (17)
- 技术积攒 (9)
- Oracle技术 (4)
- JSP技术 (6)
- Spring技术 (15)
- Linux技术 (6)
- Hibernate技术 (24)
- JPA技术 (1)
- Struts技术 (1)
- Struts2技术 (6)
- javascript知识 (4)
- myeclipse 使用技巧 (3)
- JavaEE技术 (2)
- JSTL (1)
- javamail技术 (1)
- jaf 技术 (1)
- 测试方法 (1)
- web技术积攒 (1)
- tomcat事项 (5)
- mysql使用 (1)
- 趣味题目 (2)
- 技术词汇 (1)
- EJB3.0 (2)
- weblogic 使用说明 (1)
- CSS (1)
最新评论
-
chenhao_java:
知识点五:依赖注入-自动装配依赖对象 -
黑白配:
为什么没有看见三个附件呢?
JavaMail jsp发送邮件 html格式 -
chunchong:
真晕,这样怎么能行呢
JAVA中防止SQL注入攻击类的源代码 -
Rod_johnson:
学习了!真不错
Hibernate:类继承的实现方式(二)--父子类各自一个表 -
erchong2011:
恩 很不错 学习了 简单
jsp页面自动跳转方式
AOP中的概念
Aspect(切面):指横切性关注点的抽象即为切面,它与类相似,只是两者的关注点不一样,类是对物体特征的抽象,而切面是横切性关注点的抽象(包括切入点的描述和通知的描述)。
Joinpoint(连接点):所谓连接点是指那些被拦截到的点。在spring中,这些点指的是方法,
因为spring只支持方法型的连接点,实际上joinpoint还可以是field或者构造器。
Pointcut(切入点):所谓切入点是指我们要对那些joinpoint进行拦截的定义。
Advice(通知):所谓通知是指拦截到jointpoint之后所要做的事情就是通知。通知分为前置通知、后置通知、异常通知、最终通知、环绕通知。
Target(目标对象):代理的目标对象
Weave(织入): 指将aspects应用到target对象并导致proxy对象创建的过程称为织入
Introducton(引入):在不修改类代码的前提下,Introduction可以在运行期为类动态地添加一些方法或Field
Spring提供了两种切面使用方式,实际工作中我们可以选用其中一种:
1 基于xml配置方式进行AOP开发
2 基于注解方式进行AOP开发
(一)基于注解的方式
下面是基于注解的方式
(二)基于xml配置文件的
切面只是一个普通的javabean
配置文件 :
Aspect(切面):指横切性关注点的抽象即为切面,它与类相似,只是两者的关注点不一样,类是对物体特征的抽象,而切面是横切性关注点的抽象(包括切入点的描述和通知的描述)。
Joinpoint(连接点):所谓连接点是指那些被拦截到的点。在spring中,这些点指的是方法,
因为spring只支持方法型的连接点,实际上joinpoint还可以是field或者构造器。
Pointcut(切入点):所谓切入点是指我们要对那些joinpoint进行拦截的定义。
Advice(通知):所谓通知是指拦截到jointpoint之后所要做的事情就是通知。通知分为前置通知、后置通知、异常通知、最终通知、环绕通知。
Target(目标对象):代理的目标对象
Weave(织入): 指将aspects应用到target对象并导致proxy对象创建的过程称为织入
Introducton(引入):在不修改类代码的前提下,Introduction可以在运行期为类动态地添加一些方法或Field
Spring提供了两种切面使用方式,实际工作中我们可以选用其中一种:
1 基于xml配置方式进行AOP开发
2 基于注解方式进行AOP开发
(一)基于注解的方式
下面是基于注解的方式
<?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/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> <aop:aspectj-autoproxy/><!-- 启动对@AspectJ注解的支持 --> </beans>
import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.AfterReturning; import org.aspectj.lang.annotation.AfterThrowing; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.aspectj.lang.annotation.Pointcut; import org.springframework.stereotype.Component; @Aspect @Component public class MyInterceptor { /** *@Pointcut :表示规定切入点 *execution() 语法规范 * 第一个“*”表示任意返回结果类型 * “cn.itcast.service.impl.PersonServiceBean”:表示对此类进行拦截, * 如果是cn.itcast.service..*.*:表示对包cn.itcast.service以及子包里所 有的类的所有方法进行拦截, * (..)表示参数 */ @Pointcut("execution(* com.mingbai.springaop.PersonServiceBean.*(..))") private void anyMethod(){}//声明一个切入点 /* @Before("anyMethod()") public void doAccessCheck(){ System.out.println("前置通知"); }*/ //此时的前置通知,只能拦截到参数个数和类型匹配的方法 //args(name)中的name必须和方法doAccessCheck的参数一至 @Before("anyMethod() && args(name)") public void doAccessCheck(String name){ System.out.println(name+"前置通知"); } /* @AfterReturning("anyMethod()") public void doAfterReturn(){ System.out.println("后置通知"); }*/ //得到方法的返回值 @AfterReturning(pointcut="anyMethod()",returning="result") public void doAfterReturn(String result){ System.out.println("后置通知 "+result); } @After("anyMethod()") public void doAfter(){ System.out.println("最终通知"); } /* @AfterThrowing("anyMethod()") public void doAfterThrow(){ System.out.println("异常通知"); }*/ @AfterThrowing(pointcut="anyMethod()",throwing="e") public void doAfterThrow(Exception e){ System.out.println("异常通知------"+e.getMessage()); } @Around("anyMethod()") public Object doBasicProfiling(ProceedingJoinPoint pjp) throws Throwable{ System.out.println("环绕通知 开始"); Object obj = pjp.proceed(); System.out.println("环绕通知 结束"); return obj; } }
(二)基于xml配置文件的
切面只是一个普通的javabean
import org.aspectj.lang.ProceedingJoinPoint; public class MyInterceptor1 { public void doAccessCheck(){ System.out.println("前置通知-------"); } public void doAfterReturn(){ System.out.println("后置通知"); } public void doAfter(){ System.out.println("最终通知"); } public void doAfterThrow(){ System.out.println("异常通知"); } public Object doBasicProfiling(ProceedingJoinPoint pjp) throws Throwable{ System.out.println("环绕通知 开始"); Object obj = pjp.proceed(); System.out.println("环绕通知 结束"); return obj; } }
配置文件 :
<?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/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/context http://www.springframework.org/schema/context/spring-context-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"> [color=brown] <bean id="per" class="com.mingbai.springaop.PersonServiceBean"/> <bean id="myInterceptor" class="com.mingbai.springaop.MyInterceptor1"/> <!-- <aop:config> <aop:aspect id="asp" ref="myInterceptor"> <aop:pointcut id="mycut" expression="execution(* com.mingbai.springaop.*.*(..))"/> <aop:before pointcut-ref="mycut" method="doAccessCheck"/> <aop:after-returning pointcut-ref="mycut" method="doAfterReturn"/> <aop:after pointcut-ref="mycut" method="doAfter"/> <aop:after-throwing pointcut-ref="mycut" method="doAfterThrow"/> <aop:around pointcut-ref="mycut" method="doBasicProfiling"/> </aop:aspect> </aop:config>[/color] --> <!-- 只是拦截返回类型为java.lang.String的方法 <aop:config> <aop:aspect id="asp" ref="myInterceptor"> <aop:pointcut id="mycut" expression="execution(java.lang.String com.mingbai.springaop.*.*(..))"/> <aop:before pointcut-ref="mycut" method="doAccessCheck"/> <aop:after-returning pointcut-ref="mycut" method="doAfterReturn"/> <aop:after pointcut-ref="mycut" method="doAfter"/> <aop:after-throwing pointcut-ref="mycut" method="doAfterThrow"/> <aop:around pointcut-ref="mycut" method="doBasicProfiling"/> </aop:aspect> </aop:config> --> <!-- 返回非void的方法 --> <aop:config> <aop:aspect id="asp" ref="myInterceptor"> <aop:pointcut id="mycut" expression="execution(!void com.mingbai.springaop.*.*(..))"/> <aop:before pointcut-ref="mycut" method="doAccessCheck"/> <aop:after-returning pointcut-ref="mycut" method="doAfterReturn"/> <aop:after pointcut-ref="mycut" method="doAfter"/> <aop:after-throwing pointcut-ref="mycut" method="doAfterThrow"/> <aop:around pointcut-ref="mycut" method="doBasicProfiling"/> </aop:aspect> </aop:config> <!-- 匹配第一个参数为java.lang.String,其它的无所谓 <aop:config> <aop:aspect id="asp" ref="myInterceptor"> <aop:pointcut id="mycut" expression="execution(* com.mingbai.springaop.*.*(..))"/> <aop:before pointcut-ref="mycut" method="doAccessCheck"/> <aop:after-returning pointcut-ref="mycut" method="doAfterReturn"/> <aop:after pointcut-ref="mycut" method="doAfter"/> <aop:after-throwing pointcut-ref="mycut" method="doAfterThrow"/> <aop:around pointcut-ref="mycut" method="doBasicProfiling"/> </aop:aspect> </aop:config> --> </beans>
发表评论
-
Spring 声明式事物管理详解
2010-03-01 09:54 986Spring声明式事务让我们从复杂的事务处理中得到解脱。使得我 ... -
spring注解详解
2010-03-01 09:18 41931.准备工作 (1)导入common- ... -
Hibernate+Spring彻底搞定Clob、Blob的存取
2009-09-10 10:26 986Hibernate+Spring彻底搞定Clob、Blob的存 ... -
Spring Jms入门实例
2009-09-08 11:13 3641Spring JMS Spring框架提供了一 ... -
spring事务传播属性
2009-08-03 10:04 1445事务的传播行为和隔离级别[transaction behavi ... -
知识点八-2 :spring 2.5 事务属性
2009-06-02 16:04 2230spring事务的属性 1• ... -
知识点八:spring的事物
2009-06-02 15:48 1135spring2.5的事物管理,分为两种方式,一是基于注解方式的 ... -
知识点七:Spring AOP技术
2009-05-27 14:42 1476Spring提供了两种切面使用方式,实际工作中我们可以选用其中 ... -
知识点六:自动扫描方式把组件纳入(注册到)spring容器中管理
2009-05-27 10:56 923前面我们都是使用XML的b ... -
知识点五:依赖注入-自动装配依赖对象
2009-05-27 10:42 1150对于自动装配,了解一下就可以,实际应用中并不被推荐使用。例子: ... -
知识点四:依赖注入-使用Field注入(用于注解方式)
2009-05-27 10:15 2084注入依赖对象可以采用 ... -
知识点三:Bean的初始化方法和销毁方法
2009-05-27 09:59 13811 在容器中注册的bean到 ... -
知识点二:详解Spring中bean的作用域
2009-05-27 09:55 775如何使用spring的作用域: <bea ... -
知识点一:spring之实例化bean
2009-05-27 09:17 1666最基本的: Xml代码 & ...
相关推荐
Spring AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的重要组成部分,它提供了一种在不修改源代码的情况下,对程序进行功能增强的技术。这个"spring aop jar 包"包含了实现这一功能所需的类和接口,...
Spring AOP,全称为Aspect Oriented Programming,是面向切面编程的一种编程范式,它是对传统的面向对象编程(OOP)的一种补充。在OOP中,核心是对象,而在AOP中,核心则是切面。切面是关注点的模块化,即程序中的...
Spring AOP(面向切面编程)是Spring框架的重要组成部分,它提供了一种模块化和声明式的方式来处理系统中的交叉关注点问题,如日志、事务管理、安全性等。本示例将简要介绍如何在Spring应用中实现AOP,通过实际的...
3、对spring aop认识模糊的,不清楚如何实现Java 自定义注解的 4、想看spring aop 注解实现记录系统日志并入库等 二、能学到什么 1、收获可用源码 2、能够清楚的知道如何用spring aop实现自定义注解以及注解的逻辑...
Spring AOP 是一种面向切面编程的技术,它允许我们在不修改源代码的情况下,对应用程序的特定部分(如方法调用)进行增强。在 Spring 中,AOP 的实现主要依赖于代理模式,有两种代理方式:JDK 动态代理和 CGLIB 动态...
Spring AOP(面向切面编程)是Spring框架的核心特性之一,它允许开发者在不修改源代码的情况下,通过插入切面来增强或改变程序的行为。在本教程中,我们将深入探讨Spring AOP的不同使用方法,包括定义切点、通知类型...
Spring AOP,全称Aspect-Oriented Programming(面向切面编程),是Spring框架的一个重要模块,它通过提供声明式的方式来实现面向切面编程,从而简化了应用程序的开发和维护。在Spring AOP中,我们无需深入到每个...
现在,我们回到主题——"springaop依赖的jar包"。在Spring 2.5.6版本中,使用Spring AOP通常需要以下核心jar包: - `spring-aop.jar`:这是Spring AOP的核心库,包含了AOP相关的类和接口。 - `spring-beans.jar`:...
Spring AOP 和 Spring IOC 是 Spring 框架的两个核心组件,它们对于任何基于 Java 的企业级应用开发都至关重要。Spring AOP(面向切面编程)允许开发者在不修改源代码的情况下,通过“切面”来插入新的行为或增强已...
面向切面编程(AOP)是一种编程范式,旨在将横切关注点(如日志、安全等)与业务逻辑分离,从而提高模块化。...利用Java反射机制和Spring AOP框架,开发者可以方便地实现AOP,从而提升代码的模块化和可维护性。
**Spring AOP 实现机制详解** Spring AOP(面向切面编程)是Spring框架的核心特性之一,它允许程序员在不修改源代码的情况下,通过“切面”来插入额外的业务逻辑,如日志、事务管理等。AOP的引入极大地提高了代码的...
Spring AOP(面向切面编程)是Spring框架的重要组成部分,它允许程序员在不修改源代码的情况下,通过在运行时插入额外的行为(如日志记录、性能监控等)来增强对象的功能。动态代理则是Spring AOP实现的核心技术之一...
### Spring AOP面向方面编程原理:AOP概念详解 #### 一、引言 随着软件系统的日益复杂,传统的面向对象编程(OOP)逐渐暴露出难以应对某些横切关注点(cross-cutting concerns)的问题。为了解决这一挑战,面向方面编程...
在讨论Spring AOP(面向切面编程)时,首先需要理解几个核心概念。Spring AOP 是Spring框架提供的一个功能模块,它允许开发者将横切关注点(cross-cutting concerns)从业务逻辑中解耦出来,通过在方法调用前后进行...
### Spring AOP 实现流程日志跟踪 #### 一、背景与目的 在现代软件开发过程中,为了确保系统的稳定性和可维护性,通常会引入非功能性的需求来增强应用程序的功能,比如日志记录、安全控制等。这些需求往往不是业务...
Spring AOP(面向切面编程)是Spring框架的重要组成部分,它提供了一种模块化和声明式的方式来处理系统中的交叉关注点,如日志、事务管理等。在Java应用中,AOP通过代理模式实现了切面编程,使得我们可以将业务逻辑...
### Spring AOP 入门详解 #### 一、Spring AOP 概述 Spring AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的一个关键特性,它为开发者提供了在运行时动态添加代码(即横切关注点或切面)到已有...
Spring源码最难问题:当Spring AOP遇上循环依赖 Spring源码中最难的问题之一是循环依赖问题,当Spring AOP遇上循环依赖时,该如何解决? Spring通过三级缓存机制解决循环依赖的问题。 在Spring中,bean的实例化...
Spring AOP,即Spring的面向切面编程模块,是Spring框架的重要组成部分,它允许开发者在不修改源代码的情况下,对程序进行横切关注点的处理,如日志、事务管理等。实现这一功能,主要依赖于三个核心的jar包:aop...
在`springAop1`这个压缩包中,可能包含了一个简单的应用示例,展示了如何定义一个切面类,以及如何在该类中定义通知方法。例如,我们可能会看到一个名为`LoggingAspect`的类,其中包含了`@Before`注解的方法,用于在...