Spring 之AOP 面向切面编程
AOP相关术语:
Joinpoint (连接点):所谓连接点是指那些被拦截到的点,在spring中,这些点指的是方法,因为spring 只支持方法类型的连接点。
Pointcut(切入点):所谓切入点是指我们要对那些Joinpoint进行拦截的定义。
Adevice(通知/增强):所谓通知是指拦截到Joinpoint之后要做的事,分为前置通知,后置通知,异常通知,最终通知,环绕通知(切面要完成的功能)
Introduction(引介):引介是一种特殊的通知在不修改类代码的前提下,Introduction可以在运行期为类动态的添加一些方法或Field
Target(目标对象):代理的目标对象
Weaving(织入):是指把增强应用到目标对象来创建新的代理对象的过程。spring 采用动态代理织入,而AspectJ采用编译器织入和类装载期织入
Proxy(代理):一个类被AOP织入增强后,就产生一个结果代理类
Aspect(切面):是切入点和通知(引介)的结合
通知类型:
- 前置通知:在目标方法执行前执行
- 后置通知:在目标方法执行后执行
- 环绕通知:在目标方法执行前和执行后通知
- 异常抛出通知:在目标方法出现异常时执行
- 最终通知:无论目标方法是否出现异常,最终通知都会执行
引入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:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
第一种方式我们可以在Xml文件中进行配置:
编写目标对象:
public interface PersonDao {
public String savePerson();
}
public class PersonDaoImpl implements PersonDao {
@Override
public String savePerson() {
System.out.println("save person");
return "return SavePerson";
}
}
编写切面类 进行事务管理:
package com.person; import javax.persistence.criteria.Join; import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint; public class Transaction {
/**
* 前置通知
* JoinPoint
* 连接点,代表一个方法,客户端调用哪个方法那个方法就是连接点
* 通过该参数,可以获取到连接点的一些信息
* @param joinPoint
*/
public void beginTransaction(JoinPoint joinPoint){
//获取目标类
System.out.println("targetClass " + joinPoint.getTarget());
//获取连接点的参数
System.out.println("args " + joinPoint.getArgs());
//获取连接点的名称
System.out.println("methodName " + joinPoint.getSignature().getName());
System.out.println("开启事务");
}
/**
* 后置通知 方法遇到异常 不执行
* JoinPoint 连接点
* Object val 接受目标方法的返回值 与配置文件中参函数名一致
* @param joinPoint
*/
public void commit(JoinPoint joinPoint,Object val){
System.out.println(val);
System.out.println("事务提交"); }
/**
* 最终通知 无论是否发生异常都会执行
* @param joinPoint
*/
public void finalyMethod(JoinPoint joinPoint){
System.out.println("finally method");
}
/**
* 异常通知
* @param joinPoint 连接点
* @param ex 接收异常 在文件中配置 参数名一致
*/
public void throwingMethod(JoinPoint joinPoint,Throwable ex) {
System.out.println(ex.getMessage());
}
/**
* 环绕通知 在方法前后执行 能够控制方法是否执行
* 其主要在于,
* 如果使用around 来作为切入面,连接点的方法就嵌套在around中来执行,
* 如果around中不获取连接点来执行方法,那么原本的方法不会执行
*
* 如果在around执行时同样使用了aftereturning来拦截return就必须,
* 在around中执行方法的哪一行就行return的获取,再由around再次进行return,
* 否则afterreturning是拦截不到return的,因为return在around已经断掉了
*
* 注意在around 中使用的是 ProceedingJoinPoint
* @param joinPoint
* @throws Throwable
*/
public Object aroundMethod(ProceedingJoinPoint joinPoint) throws Throwable{
System.out.println("aaaaaa");
Object val = joinPoint.proceed();//执行目标方法
System.out.println("bbbbbb");
return val;
}
//public void aroundMethod(ProceedingJoinPoint joinPoint) throws Throwable{
// System.out.println("aaaaaa");
//// Object val = joinPoint.proceed();//执行目标方法
// System.out.println("bbbbbb");
//// return val;
//}
}
修改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" xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="personDao" class="com.person.PersonDaoImpl"></bean>
<bean id="transaction" class="com.person.Transaction"></bean>
<aop:config>
<aop:pointcut
expression="execution(* com.person.PersonDaoImpl.*(..))"
id="perform"/>
<!-- 切面 -->
<aop:aspect ref="transaction">
<!-- 前置通知 -->
<aop:before method="beginTransaction" pointcut-ref="perform"/>
<!-- 后置通知
1、在目标方法执行之后执行 2、能够获取到目标方法的返回值 returning="val" val:和后置通知方法的接收参数名一样 3、如果目标方法遇到异常,则后置通知将不执行 -->
<aop:after-returning method="commit" pointcut-ref="perform" returning="val"/>
<!-- 最终通知 不管目标方法是否遇到异常,最终通知都将执行 -->
<aop:after method="finalyMethod" pointcut-ref="perform"/>
<!-- 异常通知 获取目标方法抛出的异常 throwing="ex"和方法中的第二个参数的名称一致 -->
<aop:after-throwing method="throwingMethod" pointcut-ref="perform" throwing="ex"/>
<!-- 环绕通知 能够控制目标方法的执行 -->
<!-- <aop:around method="aroundMethod" pointcut-ref="perform"/> -->
</aop:aspect>
</aop:config> </beans>
测试代码:
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext; public class PersonTest { public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("person.xml");
PersonDao personDao = (PersonDao) context.getBean("personDao"); personDao.savePerson();
}
}
输出结果如下:
targetClass com.person.PersonDaoImpl@713055ba
args [Ljava.lang.Object;@20a07db0
methodName savePerson
开启事务
save person
return SavePerson
事务提交
finally method
第二种方式我们可以利用注解来配置
编写目标对象:
public class Book { public String add() {
System.out.println("add....books.....");
return "return Save";
}
public void query() {
System.out.println("query.........");
}
public void delete () {
System.out.println("delete....books....."); }
}
编写切面类:
import org.aspectj.lang.JoinPoint;
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;
//声明切入面
@Aspect
public class BookAspect { //在方法上面使用注解完成增强配置
@Before(value="execution(* cn.aop.Book.*(..))")
public void before(JoinPoint joinPoint) {
//获取目标类
System.out.println("target :" + joinPoint.getTarget());
//获取连接点的参数
System.out.println("args :" + joinPoint.getArgs());
//获取链接点的名称
System.out.println("methodName :" + joinPoint.getSignature().getName());
System.out.println("before..............");
} @After(value="execution(* cn.aop.Book.*(..))" )
public void after() {
System.out.println("after..............");
}
// @AfterReturning(pointcut="pointcut1",returning="val")
// @AfterReturning(value="execution(* cn.aop.Book.*(..))",returning="val")
public void afterReturning(Object val){
System.out.println(val);
System.out.println("afterReturning...."); }
@AfterThrowing(value = "execution(* cn.aop.Book.*(..))")
public void afterThrowing(){
System.out.println("afterThrowing....."); }
@Around(value="execution(* cn.aop.Book.*(..))")
public Object around(ProceedingJoinPoint joinPoint) throws Throwable{
System.out.println("aaaaaa");
Object val = joinPoint.proceed();
System.out.println("bbbbbb");
return val;
} }
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" xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!-- 开启aop操作 -->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
<!-- 1 配置对象 -->
<bean id="book" class="cn.aop.Book"></bean>
<bean id="BookAspect" class="cn.aop.BookAspect"></bean> <!-- <aop:config>
<aop:pointcut expression="execution(* cn.aop.Book.*(..))" id="pointcut1"/>
</aop:config> -->
</beans>
编写测试类:
import javax.sound.midi.Soundbank;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext; public class TestBook { public void testDemo(){
ApplicationContext context =
new ClassPathXmlApplicationContext("book.xml");
Book book = (Book) context.getBean("book");
book.add();
System.out.print("\n");
book.delete();
// System.out.println("\n");
// System.out.println(book.query());
}
public static void main(String[] args) {
TestBook test = new TestBook();
test.testDemo();
}
}
测试结果:
aaaaaa
target :cn.aop.Book@61fc0ce6
args :[Ljava.lang.Object;@55a19181
methodName :add
before..............
add....books.....
bbbbbb
after.............. aaaaaa
target :cn.aop.Book@61fc0ce6
args :[Ljava.lang.Object;@1b6cdb87
methodName :delete
before..............
delete....books.....
bbbbbb
after..............
Spring 之AOP 面向切面编程的更多相关文章
- Spring:AOP面向切面编程
AOP主要实现的目的是针对业务处理过程中的切面进行提取,它所面对的是处理过程中的某个步骤或阶段,以获得逻辑过程中各部分之间低耦合性的隔离效果. AOP是软件开发思想阶段性的产物,我们比较熟悉面向过程O ...
- Spring 08: AOP面向切面编程 + 手写AOP框架
核心解读 AOP:Aspect Oriented Programming,面向切面编程 核心1:将公共的,通用的,重复的代码单独开发,在需要时反织回去 核心2:面向接口编程,即设置接口类型的变量,传入 ...
- Spring框架 AOP面向切面编程(转)
一.前言 在以前的项目中,很少去关注spring aop的具体实现与理论,只是简单了解了一下什么是aop具体怎么用,看到了一篇博文写得还不错,就转载来学习一下,博文地址:http://www.cnbl ...
- Spring的AOP面向切面编程
什么是AOP? 1.AOP概念介绍 所谓AOP,即Aspect orientied program,就是面向方面(切面)的编程. 功能: 让关注点代码与业务代码分离! 关注点: 重复代码就叫做关注点: ...
- spring:AOP面向切面编程02
参考: https://blog.csdn.net/jeffleo/article/details/54136904 一.AOP的核心概念AOP(Aspect Oriented Programming ...
- Spring注解 - AOP 面向切面编程
基本概念: AOP:Aspect Oriented Programming,即面向切面编程 指在程序运行期间动态的将某段代码切入到指定方法指定位置进行运行的编程方式 前置通知(@Before):在目标 ...
- Spring框架——AOP面向切面编程
简介 AOP练习 使用动态代理解决问题 Spring AOP 用AspectJ注解声明切面 前置后置通知 利用方法签名编写AspectJ切入点表达式 指定切面的优先级 基于XML的配置声明切面 Spr ...
- Spring之AOP(面向切面编程)_入门Demo
AOP是OOP的延续,是Aspect Oriented Programming的缩写,意思是面向切面编程.AOP实际是GoF设计模式的延续,设计模式孜孜不倦追求的是调用者和被调用者之间的解耦,AOP可 ...
- 【spring源码学习】spring的AOP面向切面编程的实现解析
一:Advice(通知)(1)定义在连接点做什么,为切面增强提供织入接口.在spring aop中主要描述围绕方法调用而注入的切面行为.(2)spring定义了几个时刻织入增强行为的接口 => ...
- 详解Spring框架AOP(面向切面编程)
最近在学习AOP,之前一直很不明白,什么是AOP?为什么要使用AOP,它有什么作用?学完之后有一点小小的感触和自己的理解,所以在这里呢就跟大家一起分享一下 AOP(Aspect-Oriented Pr ...
随机推荐
- selenium实战演练
利用selenium以及pyquery,爬取当当网图书信息,并且将数据存入文件以及MongoDB数据库中. 配置文件: key="python" MONGO_URL='localh ...
- vue项目编译配置 用于结合Django项目
- Python爬虫例子(笔记,不适合参考,愿意看的可以看看)
话不多说,直接上代码: import re import csv #爬虫的一个小例子,爬的是百度贴吧(网页版)某个帖子的各个楼层的用户名,发言内容和发言时间(使用到了正则表达式) source3.tx ...
- UVa 806 四分树
题意: 分析: 类似UVa 297, 模拟四分树四分的过程, 就是记录一个左上角, 记录宽度wideth, 然后每次w/2这样递归下去. 注意全黑是输出0, 不是输出1234. #include &l ...
- hibernate-validator验证请求参数
开发接口要进行请求参数内容格式校验,比如在接收到请求参数后依次需要进行数据内容判空.数据格式规范校验等,十分麻烦,于是尝试用hibernate-validator进行参数校验,简单记录一下使用步骤: ...
- 九度oj 题目1060:完数VS盈数
题目1060:完数VS盈数 时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:6461 解决:2426 题目描述: 一个数如果恰好等于它的各因子(该数本身除外)子和,如:6=3+2+1.则称其 ...
- UVA 10652 凸包问题
#include <cstdio> #include <cstring> #include <algorithm> #include <cmath> # ...
- 【ZJOI2017 Round1练习&UVA1057】D6T1 Routing(DP,SPFA)
题意:给你一个有向图, 并指定起点和终点. 问要从起点走向终点, 再从终点走向起点, 最少需要走过多少不同的节点. 对于 100%的数据, 有 N<=100, M<=min(1000,N* ...
- hdu - 1195 Open the Lock (bfs) && hdu 1973 Prime Path (bfs)
http://acm.hdu.edu.cn/showproblem.php?pid=1195 这道题虽然只是从四个数到四个数,但是状态很多,开始一直不知道怎么下手,关键就是如何划分这些状态,确保每一个 ...
- HDU——3072 Intelligence System
Intelligence System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Othe ...