分布式补充技术 01.AOP技术

news/2025/1/11 6:07:38/

01.AOP技术是对于面向对象编程(OOP)的补充。是按照OCP原则进行的编写,(ocp是修改模块权限不行,扩充可以)
02.写一个例子:
创建一个新的java项目,在main主启动类中,写如下代码。

package com.company;interface mainService{void send();
}
class DefaultServiceImpl implements mainService
{@Overridepublic void send() {System.out.println("hello");}
}
public class main {public static void main(String[] args){DefaultServiceImpl defaultService=new DefaultServiceImpl();defaultService.send();}
}

一个接口,一个接口实现类,一个main主方法。

03.如果要实现显示接口实现类中的send方法运行的时间,一般的就在实现类中的send方法前后添加system.currenttimeMills

 @Overridepublic void send() {System.out.println("start:"+System.currentTimeMillis());System.out.println("hello");System.out.println("end:"+System.currentTimeMillis());}

04.如果在项目的发布后,或者以后接口实现类以后代码多,如何去修改项目呢?实现显示运行时间呢?
方法一:继续写一个子类去继承接口实现类。

class DefaultServiceImpl implements mainService
{@Overridepublic void send() {// System.out.println("start:"+System.currentTimeMillis());System.out.println("hello");//  System.out.println("end:"+System.currentTimeMillis());}
}class logDefaultImpl extends DefaultServiceImpl
{@Overridepublic void send() {System.out.println("start:"+System.currentTimeMillis());System.out.println("hello");System.out.println("end:"+System.currentTimeMillis());}
}
package com.company;interface mainService{void send();
}
class DefaultServiceImpl implements mainService
{@Overridepublic void send() {// System.out.println("start:"+System.currentTimeMillis());System.out.println("hello");//  System.out.println("end:"+System.currentTimeMillis());}
}class logDefaultImpl extends DefaultServiceImpl
{@Overridepublic void send() {System.out.println("start:"+System.currentTimeMillis());System.out.println("hello");System.out.println("end:"+System.currentTimeMillis());}
}
public class main {public static void main(String[] args){mainService logDefaultImpl=new logDefaultImpl();logDefaultImpl.send();}
}

方法二:如果接口实现类被final修饰的话,不能用子类来继承,可以写一个集合来实现运行时间的功能

final class DefaultServiceImpl implements mainService
{@Overridepublic void send() {System.out.println("hello");}
}

创建一个新的类,也同样实现接口mainService:
在这个类中声明一个接口的变量:

class logDefaultImpl implements mainService
{private mainService mainservice;public logDefaultImpl(mainService mainservice){this.mainservice=mainservice;}@Overridepublic void send() {System.out.println("start:"+System.currentTimeMillis());mainservice.send();System.out.println("end:"+System.currentTimeMillis());}
}

在main主方法中:

public class main {public static void main(String[] args){mainService DefaultServiceImpl=new DefaultServiceImpl();DefaultServiceImpl.send();mainService log=new logDefaultImpl(new DefaultServiceImpl());log.send();}
}

通过构造函数,将final修饰的接口实现类传入到新的类中,结合方法,来实现显示运行时间的功能。

05.AOP技术的底层实现。
AOP对象是通过代理对象来实现的,代理对象有两种,一种是通过JDK来实现的,一种是通过CGlib来实现的。
在这里插入图片描述
jdk的代理就好像是使用一个新的类去继承接口,再来包含目标接口实现类
cglib是写一个子类去继承目标接口实现类。

06.AOP的术语
1切面:就是写了相关扩展功能的类
2.通知:就是切面中的相关方法
3.连接点:就是需要扩展的方法
4.切入点:就是连接点所在的类,有的时候也可能是一整个包。
在这里插入图片描述
07.在springboot中去实现AOP技术
先在maven项目中导入相关的依赖。
在这里插入图片描述

 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-aop</artifactId>     </dependency>

在去写切面类,这里需要用注解@Aspect标识这个类是切面类,用@Component来将类交给spring容器进行管理。还需要使用到log4j来进行日志管理@Slf4j。

package com.cy.common;import lombok.extern.slf4j.Slf4j;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
@Slf4j//日志
@Aspect//标识切面类
@Component//交给spring容器管理
public class sysLogAspect {@Pointcut("bean(sysUserServiceImpl)")//@Pointcut标识连接点(多个切入点的集合)public void logPointCut(){} @Around("logPointCut()")//这个是环绕通知,属性是切入点public Object around(ProceedingJoinPoint joinPoint) throws Throwable {//还是计算运行时间//并且执行方法Long startTime=System.currentTimeMillis();Object object= joinPoint.proceed();//调用本切面的其他方法或者其他切面的通知和目标Long endTime=System.currentTimeMillis();log.info("总时长是:",endTime-startTime);return object;}}

@Pointcut标识连接点(多个切入点的集合),这里用来写的是连接点bean标识spring容器中的类,括号中的是类名,一般是接口的实现类impl。

这个切面的意义在于sysUserServiceImpl这个接口实现类的每一个方法都扩展了功能,记录运行时间。

07.在springboot项目导入AOP依赖后,项目实现路径发送了改变。
springboot版本2.x后,默认AOP代理是Cglib
运行:
在这里插入图片描述

AOP通知有五种:
在这里插入图片描述

package com.cy.common;import lombok.extern.slf4j.Slf4j;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.stereotype.Component;@Slf4j
@Aspect
@Component
public class sysTimeAspect {@Pointcut("bean(sysUserServiceImpl)")public void doTime(){}@Around("doTime()")public Object aroud(ProceedingJoinPoint joinPoint) throws Throwable {Long startTime=System.currentTimeMillis();Object object= joinPoint.proceed();Long endTime=System.currentTimeMillis();log.info("总时长是:",endTime-startTime);System.out.println("通知around");return object;}//前置@Before("doTime()")public void before()  {System.out.println("通知before");}//后置@After("doTime()")public void after()  {System.out.println("通知before");}//正常@AfterReturning("doTime()")public void AfterReturn()  {System.out.println("通知AfterReturning");}//异常@AfterThrowing("doTime()")public void AfterThrow()  {System.out.println("通知AfterThrowing");}
}

使用通知@AfterThrowing,在切面中去写一个异常通知,就是目标接口类方法运行时候有异常,切面类处理。

@Slf4j
@Aspect
@Component
public class sysExceptionAspect {@AfterThrowing(pointcut = "bean(sysUserServiceImpl)",throwing = "e")//pointcut是连接点,throwing是抛出的异常public void doHandlerException(JoinPoint jp//这个是切入点,Throwable e){MethodSignature ms= (MethodSignature)jp.getSignature();log.error("{},exception msg is {}",ms.getName(),e.getMessage());}}

getsignature返回的类型是signature。
在这里插入图片描述

如果想要所有的接口实现类的运行方法报错时候有这个切面的类的AfterThrowing来处理异常,可以在bean中去写bean(*ServiceImpl)


http://www.ppmy.cn/news/107792.html

相关文章

github SSH 生成和使用(详细)

通过ssh连接github&#xff0c;可以有效的提升安全性 1.设置位置 2.生成ssh密钥&#xff08;windows&#xff09; 打开git bash&#xff0c;输入以下命名&#xff0c;把your_emailexample.com换成自己的github账号 ssh-keygen -t rsa -b 4096 -C "your_emailexample.co…

iOS推送证书格式转换

步骤&#xff1a; 1.将cer文件转换为pem格式的文件 打开终端----->cd打开到aps.cer文件文件夹&#xff0c;执行下面的命令 命令&#xff1a; openssl x509 -inform der -in 文件名称.cer -out PushChatCert.pem(我一般命名aps.cer) &#xff08;PushChatCert.pem&#xff1a…

多元办公场景下,企业如何保障工作效率与数据安全流通?

为适应数字化转型需求&#xff0c;提升办公效率&#xff0c;很多企业对工作模式进行革新&#xff0c;并将更多协同办公工具引入工作流程。然而&#xff0c;这也扩大了企业内网对外的安全暴露面&#xff0c;企业亟需进一步加强底层基础设施的网络安全建设&#xff0c;严防勒索病…

基于Fragment的插件化

宿主App的Activity想要加载插件中的Fragment&#xff0c;一般需要在进入插件的Fragment时要使用插件的ClassLoader和Resource对象。这就要求我们替换ClassLoader和Resource。我们首先在宿主app中使用一个FragmentLoaderActivity类来存放要加载的Fragment&#xff0c;然后按照以…

支持图片扩展等AI功能,PS 2023 v24.5 安装教程

主要功能 PS发布了革命性的AI功能&#xff0c;创意填充&#xff0c;创意工具&#xff0c;图像预设&#xff0c;智能移除&#xff0c;上下文任务栏&#xff0c;智能渐变。 “创意填充”是一套具有革命性且神奇的全新功能&#xff0c;它由 AI 提供支持&#xff0c;基于您与生俱…

ArcGIS教程——ArcGIS快速入门

实例数据&#xff1a;https://pan.baidu.com/s/184wwCmWrJdb-qjxsT614EQ 密码&#xff1a;dowv ArcGIS for Desktop是一套完整的专业GIS应用程序&#xff0c;包含有ArcMap、ArcCatalog、ArcToolbox、ArcScense、ArcGlobe和Model Builder等。其中ArcMap、ArcCatalog、ArcToolbo…

低代码平台产品排行榜揭晓:这些产品值得你选择和使用

低代码平台改变了软件开发的方式。它不需要开发团队从头开始创建应用程序&#xff0c;而是允许用户在几乎没有编码知识的情况下构建自定义应用程序。这些平台为需要定制软件解决方案但没有预算或时间聘请开发团队的企业提供了一种简单且经济高效的解决方案。而在本文中&#xf…

珞珈一号夜间灯光数据校正流程

一、前言 随着珞珈一号夜间灯光数据的发射,其高分辨率等优异性能,可以为我国相关部门监测国内和全球宏观经济运行情况,为政府决策提供客观依据,珞珈一号理想情况下荷在15天内完成绘制全球夜光影像,提供我国或者全球GDP指数、碳排放指数、城市住房空置率指数等专题产品。 …