热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

毕业设计(四)spring学习笔记(2)之AOP

2019独角兽企业重金招聘Python工程师标准AOP:AOP中的概念Aspect(切面):指横切性关注点的抽象即为切面,它与类相似,

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

AOP:

AOP中的概念 
Aspect(切面):指横切性关注点的抽象即为切面,它与类相似,只是两者的关注点不一样,类是对物体特征的抽象,而切面是横切性关注点的抽象(包括切入点的描述和通知的描述)。 

Joinpoint(连接点):所谓连接点是指那些被拦截到的点。在spring中,这些点指的是方法, 
因为spring只支持方法型的连接点,实际上joinpoint还可以是field或者构造器。 

Pointcut(切入点):所谓切入点是指我们要对那些joinpoint进行拦截的定义。 

Advice(通知):所谓通知是指拦截到jointpoint之后所要做的事情就是通知。通知分为前置通知、后置通知、异常通知、最终通知、环绕通知。 

Target(目标对象):代理的目标对象 

Weave(织入): 指将aspects应用到target对象并导致proxy对象创建的过程称为织入 

Introducton(引入):在不修改类代码的前提下,Introduction可以在运行期为类动态地添加一些方法或Field

一张我自己理解的AOP的定义的简单图:



使用AOP的两种方式, 一种是Annotation注解 二种是xml方式。

一:Annotation:


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">
红色是需要添加的。

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("前置通知"); }

//上衣个方法@before 中的内容可以向下面一样写,

@Before("execution(* com.mingbai.springaop.PersonServiceBean.*(..))") 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; }
}


---------------------------------------------------------------------------------------------------------------




java.lang.String com.mingbai.springaop.*.*(..))"/> pointcut-ref="mycut" method="doAccessCheck"/> --> !void com.mingbai.springaop.*.*(..))"/>

版权声明:本文为博主原创文章,未经博主允许不得转载。


转:https://my.oschina.net/wangt10/blog/508393



推荐阅读
author-avatar
宝丁2502907973
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有