Spring AOP
2020-12-13 03:19
标签:方式 cglib poi 属性 cer voc tin 回调函数 frame 接口: 实现类: 切面: 工厂类创建代理对象: 测试类: 执行结果: ? 没有接口,只有实现类。 目标类: 切面类: 测试结果(将methodProxy.invokeSuper(proxy, args);注释即与jdk结果一致了): ? 前置通知 org.springframework.aop.MethodBeforeAdvice 让spring 创建代理对象,从spring容器中手动的获取代理对象: 切面类: xml配置: 测试类: 总结:上面主要是让大家理解spring的原理,方便掌握Spring aop的实现。 1、从spring容器获得目标类,如果配置aop,spring将自动生成代理。 完整的配置为: 测试: 导入jar包(9个):(核心4+1)(aop 2(规范和实现))+1织入aspectj.weaver.jar+spring-aspects.jar 目标类为UserService与UserServiceImpl 配置: 仅有环绕通知的配置文件: 1、需要配置对包的扫描: 4、声明切面 5、前置通知 6、公共切入点 7、替换后置:(此处注解的value值相当于引用) 8、spring配置只需要: 9、切面类为: 大家有兴趣也可以关注我的公众号查看文章。 Spring AOP 标签:方式 cglib poi 属性 cer voc tin 回调函数 frame 原文地址:https://www.cnblogs.com/czz-hl/p/11072797.html一、原理
1、aop底层将采用代理机制进行实现。
2、接口 + 实现类 :spring采用 jdk 的动态代理Proxy。
3、实现类:spring 采用 cglib字节码增强。
二、术语
1、target:目标类,即需要被代理的类。例如:UserService
2、Joinpoint(连接点):所谓连接点是指那些可能被拦截到的方法。例如:所有的方法
3、PointCut 切入点:已经被增强的连接点。例如:addUser()
4、advice 通知/增强,增强代码。例如:after、before
5、Weaving(织入):是指把增强advice应用到目标对象target来创建新的代理对象proxy的过程.
6、proxy 代理类
7、Aspect(切面): 是切入点pointcut和通知advice的结合
一个线是一个特殊的面。
一个切入点和一个通知,组成成一个特殊的面。
三、手动实现方式(不使用Spring)
3.1 使用JDK动态代理
public interface UserService {
void addUser();
void updateUser();
void deleteUser();
}
public class UserServiceImpl implements UserService {
@Override
public void addUser() {
System.out.println("a_proxy a_jdk add user ... ");
}
@Override
public void updateUser() {
System.out.println("a_proxy a_jdk update user ... ");
}
@Override
public void deleteUser() {
System.out.println("a_proxy a_jdk delete user ... ");
}
}
public class MyAspect {
public void before(){
System.out.println("jdk_proxy之目标方法执行前 ");
}
public void after(){
System.out.println("jdk_proxy之目标方法执行后");
}
}
public class MyBeanFactory {
public static UserService createService(){
final UserService userService = new UserServiceImpl();
final MyAspect myAspect = new MyAspect();
UserService proxy = (UserService) Proxy.newProxyInstance(
MyBeanFactory.class.getClassLoader(),
userService.getClass().getInterfaces(),
new InvocationHandler() {
@Override
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable {
myAspect.before();
Object obj = method.invoke(userService, args);
myAspect.after();
return obj;
}
});
return proxy;
}
}
public class TestJdkProxy {
@Test
public void demo01(){
UserService userService = MyBeanFactory.createService();
userService.addUser();
userService.updateUser();
userService.deleteUser();
}
}
jdk_proxy之目标方法执行前
a_proxy a_jdk add user ...
jdk_proxy之目标方法执行后
jdk_proxy之目标方法执行前
a_proxy a_jdk update user ...
jdk_proxy之目标方法执行后
jdk_proxy之目标方法执行前
a_proxy a_jdk delete user ...
jdk_proxy之目标方法执行后
3.2 使用CGLIB字节码增强
? 采用字节码增强框架 cglib,在运行时 创建目标类的子类,从而对目标类进行增强。
需要导入整合了cglib.jar和asm.jar的spring-core..jarpublic class UserServiceImpl{
public void addUser() {
System.out.println("a_proxy b_cglib add user ... ");
}
public void updateUser() {
System.out.println("a_proxy b_cglib update user ... ");
}
public void deleteUser() {
System.out.println("a_proxy b_cglib delete user ... ");
}
}
public class MyAspect {
public void before(){
System.out.println("cglib之目标方法执行前");
}
public void after(){
System.out.println("cglib之目标方法执行后 ");
}
}
public class MyBeanFactory {
public static UserServiceImpl createService(){
//1 目标类
final UserServiceImpl userService = new UserServiceImpl();
//2切面类
final MyAspect myAspect = new MyAspect();
// 3.代理类 ,采用cglib,底层创建目标类的子类
//3.1 核心类
Enhancer enhancer = new Enhancer();
//3.2 确定父类
enhancer.setSuperclass(userService.getClass());
/* 3.3 设置回调函数 , MethodInterceptor接口 等效 jdk InvocationHandler接口
* intercept() 等效 jdk invoke()
* 参数1、参数2、参数3:以invoke一样
* 参数4:methodProxy 方法的代理
*
*
*/
enhancer.setCallback(new MethodInterceptor(){
@Override
public Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) throws Throwable {
//前
myAspect.before();
//执行目标类的方法
Object obj = method.invoke(userService, args);
// * 执行代理类的父类 ,执行目标类 (目标类和代理类 父子关系)
methodProxy.invokeSuper(proxy, args);
//后
myAspect.after();
return obj;
}
});
//3.4 创建代理
UserServiceImpl proxService = (UserServiceImpl) enhancer.create();
return proxService;
}
}
(测试方法与jdk相同)cglib之目标方法执行前
a_proxy b_cglib add user ...
a_proxy b_cglib add user ...
cglib之目标方法执行后
cglib之目标方法执行前
a_proxy b_cglib update user ...
a_proxy b_cglib update user ...
cglib之目标方法执行后
cglib之目标方法执行前
a_proxy b_cglib delete user ...
a_proxy b_cglib delete user ...
cglib之目标方法执行后
AOP联盟通知
AOP联盟为通知Advice定义了org.aopalliance.aop.Advice,Spring按照通知Advice在目标类方法的连接点位置,可以分为5类:
? 在目标方法执行前实施增强
? 后置通知 org.springframework.aop.AfterReturningAdvice
? 在目标方法执行后实施增强
? 环绕通知 org.aopalliance.intercept.MethodInterceptor
? 在目标方法执行前后实施增强
? 异常抛出通知 org.springframework.aop.ThrowsAdvice
? 在方法抛出异常后实施增强
? 引介通知 org.springframework.aop.IntroductionInterceptor
? 在目标类中添加一些新的方法和属性四、Spring编写代理:半自动
需要导入7个jar包:
(4+1)四个核心包(spring-beans、spring-context、spring-core、spring-expression)+logging
(1+1)AOP:AOP联盟aopalliance(规范)、spring-aop (实现)
目标类:public interface UserService {
public void addUser();
public void updateUser();
public void deleteUser();
}
/**
* 切面类中确定通知,需要实现不同接口,接口就是规范,从而就确定方法名称。
* * 采用“环绕通知” MethodInterceptor
*
*/
public class MyAspect implements MethodInterceptor {
@Override
public Object invoke(MethodInvocation mi) throws Throwable {
System.out.println("前3");
//手动执行目标方法
Object obj = mi.proceed();
System.out.println("后3");
return obj;
}
}
@Test
public void demo01(){
String xmlPath = "[包名]/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
//获得代理类
UserService userService = (UserService) applicationContext.getBean("proxyServiceId");
userService.addUser();
userService.updateUser();
userService.deleteUser();
}
五、spring aop编程:全自动
2、要确定目标类、aspectj 切入点表达式,需导入jar包:aspectj.weaver.jar(一共8个jar包)
3、配置文件需要增加aop支持:xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation=" http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
@Test
public void demo01(){
String xmlPath = "com/itheima/c_spring_aop/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
//获得目标类
UserService userService = (UserService) applicationContext.getBean("userServiceId");
userService.addUser();
userService.updateUser();
userService.deleteUser();
}
六、AspectJ通知类型
6种,知道5种(前置后置,环绕,抛出异常,最终),掌握1中(环绕),还有一种为引介:
before:前置通知(应用:各种校验)
在方法执行前执行,如果通知抛出异常,阻止方法运行
afterReturning:后置通知(应用:常规数据处理)
方法正常返回后执行,如果方法中抛出异常,通知无法执行
必须在方法执行后才执行,所以可以获得方法的返回值。
around:环绕通知(应用:十分强大,可以做任何事情)
方法执行前后分别执行,可以阻止方法的执行
必须手动执行目标方法
afterThrowing:抛出异常通知(应用:包装异常信息)
方法抛出异常后执行,如果方法没有抛出异常,无法执行
after:最终通知(应用:清理现场)
方法执行完毕后执行,无论方法中是否出现异常
切面类为:public class MyAspect {
public void myBefore(JoinPoint joinPoint){
System.out.println("前置通知 : " + joinPoint.getSignature().getName());
}
public void myAfterReturning(JoinPoint joinPoint,Object ret){
System.out.println("后置通知 : " + joinPoint.getSignature().getName() + " , -->" + ret);
}
public Object myAround(ProceedingJoinPoint joinPoint) throws Throwable{
System.out.println("前");
//手动执行目标方法
Object obj = joinPoint.proceed();
System.out.println("后");
return obj;
}
public void myAfterThrowing(JoinPoint joinPoint,Throwable e){
System.out.println("抛出异常通知 : " + e.getMessage());
}
public void myAfter(JoinPoint joinPoint){
System.out.println("最终通知");
}
}
七、基于注解
2、两个bean可以用注解@Service("userService")与@Component来代替
3、必须进行aspectj自动代理
用注解@Aspect代替@Component
@Aspect
public class MyAspect{
//切入点当前有效
@Before("execution(* [包名].UserServiceImpl.*(..))")
public void myBefore(JoinPoint joinPoint){
System.out.println("前置通知 : " + joinPoint.getSignature().getName());
}
//声明公共切入点
@Pointcut("execution(* [包名].UserServiceImpl.*(..))")
private void myPointCut(){
}
@AfterReturning(value="myPointCut()" ,returning="ret")
public void myAfterReturning(JoinPoint joinPoint,Object ret){
System.out.println("后置通知 : " + joinPoint.getSignature().getName() + " , -->" + ret);
}
@Component
@Aspect
public class MyAspect {
//切入点当前有效
// @Before("execution(* com.itheima.d_aspect.b_anno.UserServiceImpl.*(..))")
public void myBefore(JoinPoint joinPoint){
System.out.println("前置通知 : " + joinPoint.getSignature().getName());
}
//声明公共切入点
@Pointcut("execution(* com.itheima.d_aspect.b_anno.UserServiceImpl.*(..))")
private void myPointCut(){
}
// @AfterReturning(value="myPointCut()" ,returning="ret")
public void myAfterReturning(JoinPoint joinPoint,Object ret){
System.out.println("后置通知 : " + joinPoint.getSignature().getName() + " , -->" + ret);
}
// @Around(value = "myPointCut()")
public Object myAround(ProceedingJoinPoint joinPoint) throws Throwable{
System.out.println("前");
//手动执行目标方法
Object obj = joinPoint.proceed();
System.out.println("后");
return obj;
}
// @AfterThrowing(value="execution(* com.itheima.d_aspect.b_anno.UserServiceImpl.*(..))" ,throwing="e")
public void myAfterThrowing(JoinPoint joinPoint,Throwable e){
System.out.println("抛出异常通知 : " + e.getMessage());
}
@After("myPointCut()")
public void myAfter(JoinPoint joinPoint){
System.out.println("最终通知");
}
}
上一篇:C++语言动态创建对象