【Java】(九)Spring从入门到入土——AOP就这么简单

AOP

什么是AOP

​ 面向切面编程。通过预编译的方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生泛型,利用AOP可以对业务逻辑的各个部分进行隔离,从而使业务逻辑各个部分的耦合度降低,提高程序的可重用性,同时提高了开发效率。

AOP在Spring中的作用

  • 提供声明式事务;允许用户自定义切面

核心名词

  • 横切关注点:横跨应用程序多个模块的方法或功能。即是,与我们业务逻辑无关的,但是我们需要关注的地方,就是横切关注点,如:日志、安全、缓存、事务
  • 切面:横切关注点被模块化的特性对象,即:它是一个类
  • 通知:切面必须要完成的工作。即它是类中的一个方法
  • 目标:被通知对象
  • 代理:向目标对象应用通知以后创建的对象。
  • 切入点:切面通知执行的“地点的定义
  • 连接点:与切入点匹配的执行点

Spring中支持的五种类型的Advice

通知类型连接点实现接口
前置通知方法前MethodBeforeAdvice
后置通知方法后AfterReturningAdvice
环绕通知方法前后MethodInterceptor
异常抛出通知方法抛出异常ThrowsAdvice
引介通知类中增加新方法属性IntroductionOnterceptor

即Aop在不改变原有代码的情况下,去增加新的功能

使用Spring实现Aop

使用AOP,需要导入一个依赖包

<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->

<dependency>

<groupId>org.aspectj</groupId>

<artifactId>aspectjweaver</artifactId>

<version>1.9.4</version>

</dependency>

第一种方式——通过Spring API实现

业务接口和实现类

public interface UserService {

public void add();

public void delete();

public void update();

public void search();

}

public class UserServiceImpl implements UserService{

@Override

public void add() {

System.out.println("增加用户");

}

@Override

public void delete() {

System.out.println("删除用户");

}

@Override

public void update() {

System.out.println("更新用户");

}

@Override

public void search() {

System.out.println("查询用户");

}

}

增强类

前置增强

public class Log implements MethodBeforeAdvice {

//method : 要执行的目标对象的方法

//objects : 被调用的方法的参数

//Object : 目标对象

@Override

public void before(Method method, Object[] objects, Object o) throws Throwable {

System.out.println( o.getClass().getName() + "的" + method.getName() + "方法被执行了");

}

}

后置增强

public class AfterLog implements AfterReturningAdvice {

//returnValue 返回值

//method被调用的方法

//args 被调用的方法的对象的参数

//target 被调用的目标对象

@Override

public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {

System.out.println("执行了" + target.getClass().getName()

+"的"+method.getName()+"方法,"

+"返回值:"+returnValue);

}

}

去Spring的文件中注册,并实现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">

<!--注册bean-->

<bean id="userService" class="com.zhonghu.service.UserServiceImpl"/>

<bean id="log" class="com.zhonghu.log.Log"/>

<bean id="afterLog" class="com.zhonghu.log.AfterLog"/>

<!--aop的配置-->

<aop:config>

<!--切入点 expression:表达式匹配要执行的方法 -->

<aop:pointcut id="pointcut" expression="execution(* com.zhonghu.service.UserServiceImpl.*(..))"/>

<!--执行环绕增强; advice-ref执行方法 . pointcut-ref切入点-->

<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>

<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>

</aop:config>

</beans>

测试

public class MyTest {

@Test

public void test(){

ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");

// 动态代理代理的是接口

UserService userService = (UserService) context.getBean("userService");

userService.search();

}

}

第二种方式:自定义类来实现Aop

目标业务不变依旧是userServiceImpl

切入类

public class DiyPointcut {

public void before(){

System.out.println("---------方法执行前---------");

}

public void after(){

System.out.println("---------方法执行后---------");

}

}

去spring中配置

<!--第二种方式自定义实现-->

<!--注册bean-->

<bean id="diy" class="com.zhonghu.config.DiyPointcut"/>

<!--aop的配置-->

<aop:config>

<!--第二种方式:使用AOP的标签实现-->

<aop:aspect ref="diy">

<aop:pointcut id="diyPonitcut" expression="execution(* com.zhonghu.service.UserServiceImpl.*(..))"/>

<aop:before pointcut-ref="diyPonitcut" method="before"/>

<aop:after pointcut-ref="diyPonitcut" method="after"/>

</aop:aspect>

</aop:config>

测试

public class MyTest {

@Test

public void test(){

ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");

UserService userService = (UserService) context.getBean("userService");

userService.add();

}

}

第三种方式——使用注解

注解实现的增强类

package com.zhonghu.config;

import org.aspectj.lang.ProceedingJoinPoint;

import org.aspectj.lang.annotation.After;

import org.aspectj.lang.annotation.Around;

import org.aspectj.lang.annotation.Aspect;

import org.aspectj.lang.annotation.Before;

// 标注这个类是一个切面

// 标注这个类是一个切面

@Aspect

public class PointCut {

@Before("execution(* com.zhonghu.pojo.User.*(..))")

public void befer(){

System.out.println("方法执行前");

}

@After("execution(* com.zhonghu.pojo.User.*(..))")

public void after(){

System.out.println("方法执行后");

}

//在环绕增强中,我们可以给定一个参数,代表我们要处理切入的点。

@Around("execution(* com.zhonghu.pojo.User.*(..))")

public void around(ProceedingJoinPoint jp) throws Throwable {

System.out.println("环绕前");

System.out.println("签名:"+jp.getSignature());

//执行目标方法proceed

Object proceed = jp.proceed();

System.out.println("环绕后");

System.out.println(proceed);

}

}

在spring配置文件中,注册bean,并增加支持注解的配置

<!--第三种方式:注解实现-->

<bean id="annotationPointcut" class="com.zhonghu.config.AnnotationPointcut"/>

<aop:aspectj-autoproxy/>

输出结果:

【Java】(九)Spring从入门到入土——AOP就这么简单

切面的执行顺序:

【Java】(九)Spring从入门到入土——AOP就这么简单

最后

  • 如果觉得看完有收获,希望能给我点个赞,这将会是我更新的最大动力,感谢各位的支持
  • 欢迎各位关注我的公众号【java冢狐】,专注于java和计算机基础知识,保证让你看完有所收获,不信你打我
  • 如果看完有不同的意见或者建议,欢迎多多评论一起交流。感谢各位的支持以及厚爱。

【Java】(九)Spring从入门到入土——AOP就这么简单

以上是 【Java】(九)Spring从入门到入土——AOP就这么简单 的全部内容, 来源链接: utcz.com/a/97294.html

回到顶部