2021年1月12日星期二

(九)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切入实现
<?
测试
public class MyTest { @Test public void test(){  ApplicationContext context = new ClassPath

Aop的重要性:很重要,一定要理解其中的思路

​ Spring的Aop就是将公共的业务(日志、安全)和领域业务结合起来,当执行领域业务时,将会把公共业务加起来,实现公共业务的重复利用,领域业务更加纯粹,程序员只需要专注领域业务。

​ 其本质还是动态代理

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

目标业务不变依旧是userServiceImpl

切入类
public class DiyPointcut { public void before(){  System.out.println("---------方法执行前---------"); } public void after(){  System.out.println("---------方法执行后---------"); } }
去spring中配置
<!--第二种方式自定义实现--><!--注册bean--><bean id="diy" /><!--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 ClassPath

第三种方式——使用注解

注解实现的增强类
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;// 标注这个类是一个切面// 标注这个类是一个切面@Aspectpublic 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" /><aop:aspectj-autoproxy/>

输出结果:

image

切面的执行顺序:

image

aop:aspectj-autoproxy:说明

  • 通过aop创建的命名空间的<aop:aspectj-autoproxy />声明自动为spring容器中那些配置@aspectJ切面的bean创建代理,织入切面。当然,spring 在内部依旧采用AnnotationAwareAspectJAutoProxyCreator进行自动代理的创建工作,但具体实现的细节已经被<aop:aspectj-autoproxy />隐藏起来了
  • <aop:aspectj-autoproxy />有一个proxy-target-class属性,默认为false,表示使用jdk动态代理织入增强,当配为<aop:aspectj-autoproxy poxy-target-/>时,表示使用CGLib动态代理技术织入增强。不过即使proxy-target-class设置为false,如果目标类没有声明接口,则spring将自动使用CGLib动态代理

最后

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

image

欢迎关注公众号"Java冢狐"获取最新消息









原文转载:http://www.shaoqun.com/a/508603.html

跨境电商:https://www.ikjzd.com/

欧苏丹:https://www.ikjzd.com/w/1756

亿恩:https://www.ikjzd.com/w/1461


AOP什么是AOP​ 面向切面编程。通过预编译的方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生泛型,利用AOP可以对业务逻辑的各个部分进行隔离,从而使业务逻辑各个部分的耦合度降低,提高程序的可重用性,同时提高了开发效率。AOP在Spring中的作用提供声明式事务;允许用户自定义切面核心
tiki:tiki
关键词分析工具:关键词分析工具
B2B与谷歌,哪个平台更适合出口企业做海外推广? :B2B与谷歌,哪个平台更适合出口企业做海外推广?
颐和园图片 :颐和园图片
口述:女友说我买了房才能接吻上床:口述:女友说我买了房才能接吻上床

没有评论:

发表评论