本篇文章将作为整个Spring官网阅读笔记的最后一篇。如果要谈 在前面的文章中我们已经对 ——————《百度百科》 可能你看完上面这段话还是迷迷糊糊,一堆专业词汇看起来很牛逼的样子,不用担心,任何东西都是需要积累的,有些东西只需要记在脑子里,在以后实践的过程中自然而然的就明白了。 另外放一段网上大佬写的一段话,我觉得很好的解释了面向对象跟面向切面 面向对象编程解决了业务模块的封装复用的问题,但是对于某些模块,其本身并不独属于摸个业务模块,而是根据不同的情况,贯穿于某几个或全部的模块之间的。例如登录验证,其只开放几个可以不用登录的接口给用户使用(一般登录使用拦截器实现,但是其切面思想是一致的);再比如性能统计,其需要记录每个业务模块的调用,并且监控器调用时间。可以看到,这些横贯于每个业务模块的模块,如果使用面向对象的方式,那么就需要在已封装的每个模块中添加相应的重复代码,对于这种情况,面向切面编程就可以派上用场了。 面向切面编程,指的是将一定的切面逻辑按照一定的方式编织到指定的业务模块中,从而将这些业务模块的调用包裹起来 官网中的相关介绍如下: 是不是看得头皮发麻,不用紧张,我们一点点看过去就好了,现在从上往下开始介绍 前置场景,假设我们现在要对所有的controller层的接口进行性能监控 切点跟通知组成了切面 ## 连接点 所有我们能够将通知应用到的地方都是连接点,在Spring中,我们可以认为连接点就是所有的方法(除构造函数外),连接点没有什么实际意义,这个概念的提出只是为了更好的说明切点 就是我们想要额外实现的功能,在上面的例子中,实现了性能监控的方法就是通知 在连接点的基础上,来定义切入点,比如在我们上面的场景中,要对controller层的所有接口完成性能监控,那么就是说所有controller中的方法就是我们的切点(service层,dao层的就是普通的连接点,没有什么作用)。 我们可以让代理类实现目标类没有实现的额外的接口以及持有新的字段。 引入中所提到的目标类,也就是要被通知的对象,也就是真正的业务逻辑,他可以在毫不知情的情况下,被织入切面,而自己专注于业务本身的逻辑。 将切面织入目标对象后所得到的就是代理对象。代理对象是正在具备通知所定义的功能,并且被引入了的对象。 把切面应用到目标对象来创建新的代理对象的过程。切面的织入有三种方式 我们通常使用的 上面这些名词希望你不仅能记住而且要能理解,因为不管是Spring源码还是官网中都使用了这些名词,并且从这些名称中还衍生了一些新的名词,比如: 在对 XML方式本文不再介绍了,笔者近两年来没有通过XML的方式来使用过SpringAOP,现在注解才是王道,本文也只会介绍注解的方式 核心点就是在配置类上添加 我们一般都会通过切点表达式来申明切点,切点表达式一般可以分为以下几种 这里问号表示当前项是非必填的,其中各项的语义如下: 可以看到,必填的参数只有三个,返回值,方法名,方法参数。 按照上面的语法,我们可以定义如下的切点表达式 看完上面的例子不知道大家有没有疑问,比如为什么修饰符一直是 答: @annotation(annotation-type) within(declaring-type-pattern) 官网中一共给出了9中切点表达式的定义方式,但是实际上我们常用的就两种,就是 @within(annotation-type) 跟 args(param-pattern) @args(annotation-type) @args(com.spring.annotation.FruitAspect) 跟 this跟target很鸡肋,基本用不到 现在我们已经在一个切面中定义了两个切点了,现在开始编写通知 在目标方法之前执行,如果发生异常,会阻止业务代码的执行 跟Before对应,在目标方法完全执行后(return后)再执行 方法抛出异常这个通知仍然会执行(这里的方法既可以是目标方法,也可以是我们定义的通知) 切记,跟Before对应的是AfterReturning,一个在目标方法还没执行前执行,一个在目标方法完全执行后(return后)再执行,这个After类型的通知类型我们在编写代码时的Finally,即使方法抛出异常这个通知仍然会执行(这里的方法既可以是目标方法,也可以是我们定义的通知)。 一般我们使用After类型的通知都是为了完成资源的释放或者其它类似的目的 最强大的通知类型,可以包裹目标方法,其可以传入一个ProceedingJoinPoint用于调用业务模块的代码,无论是调用前逻辑还是调用后逻辑,都可以在该方法中编写,甚至其可以根据一定的条件而阻断业务模块的调用,可以更改目标方法的返回值 在上面应用的例子中,只有在环绕通知的方法上我添加了一个 JoinPoint可以在任意的通知方法上作为第一个参数申明,代表的时候通知所应用的切点(也就是目标类中的方法),它提供了以下几个方法: ProceedingJoinPoint在JoinPoint的基础上多提供了两个方法 当我们对于一个切点定义了多个通知时,例如,在一个切点上同时定义了两个before类型的通知。这个时候,为了让这两个通知按照我们期待的顺序执行,我们需要在切面上添加 AOP的实际应用非常多,我这里就给出两个例子 需要用到两个注解: 其实SpringMVC中提供了一个异常处理的基类( 这个类中已经定义了很多的异常处理方法,如下: 所以我们只需要复写对应异常处理的方法即可完成自己在当前业务场景下异常的处理。但是需要注意的是,它只会对上面这些框架抛出的异常进行处理,对于我们自定义的异常还是会直接抛出,所以我们自定义的异常处理还是需要在其中进行定义。 我们在开发中经常会打印日志,特别是接口的入参日志,如下: 如果每一个接口都需要添加这样一句代码的话就显得太LOW了,基于此我们可以使用AOP来简化代码,按照以下几步即可: 基于上面的例子测试: 这篇文章到这里就结束啦,这也是《Spring官网阅读笔记》系列笔记的最后一篇。其实整个SpringFrameWork可以分为三部分 而IOC跟AOP又是整个Spring的基石,这一系列的笔记有10篇以上是IOC相关的知识。AOP的只有这一篇,这是因为Spring简化了AOP的使用,如果要探究其原理以及整个AOP的体系的话必定要深入到源码中去,所以思来想去还是决定将其放到源码阅读系列笔记中去。 大家可以关注我接下来的一系列文章哦~ 码字不易,要是觉得不错,记得点个赞哈,感谢!SpringFramework
必定离不开两点
IOC
(控制反转)AOP
(面向切面)IOC
做过详细的介绍了,本文主要介绍AOP
,关于其中的源码部分将在专门的源码专题介绍,本文主要涉及的是AOP
的基本概念以及如何使用,本文主要涉及到官网中的第5、6两大章什么是AOP
AOP
为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP
是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP
可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。AOP中的核心概念
切面
通知
切点
引入
目标对象
代理对象
织入
SpringAOP
都是编译时期织入,另外Spring中也提供了一个Load Time Weaving
(LTW
,加载时期织入)的功能,此功能使用较少,有兴趣的同学可以参考一下两个链接:
Advisor
,虽然这些在源码阶段会再介绍,不过如果现在能懂的话无疑就在为学习源码减负了。AOP
中的核心概念有了一定了解之后,我们就来看看,如何使用AOP
,在学习使用时,第一步我们需要知道怎么去在容器中申明上面所说的那些AOP
中的元素Spring中如何使用AOP
1、开启AOP
@Configuration @ComponentScan("com.spring.study.springfx.aop") // 开启AOP @EnableAspectJAutoProxy public class Config { }
@EnableAspectJAutoProxy
,这个注解中有两个属性如下:@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Import(AspectJAutoProxyRegistrar.class) public @interface EnableAspectJAutoProxy { // 是否使用CGLIB代理,默认不使用。默认使用JDK动态代理 boolean proxyTargetClass() default false; // 是否将代理类作为线程本地变量(threadLocal)暴露(可以通过AopContext访问) // 主要设计的目的是用来解决内部调用的问题 boolean exposeProxy() default false; }
2、申明切面
@Aspect // 申明是一个切面 @Component // 切记,一定要将切面交由Spring管理,否则不起作用 public class DmzAnnotationAspect { //...... }
3、申明切点
切点表达式
excecution表达式
语法
execution(modifiers-pattern? ret-type-pattern declaring-type-pattern?name-pattern(param-pattern) throws-pattern?)
示例
// 1.所有权限为public的,返回值不限,方法名称不限,方法参数个数及类型不限的方法,简而言之,所有public的方法 execution(public * *(..)) // 2.所有权限为public的,返回值限定为String的,方法名称不限,方法参数个数及类型不限的方法 execution(public java.lang.String *(..)) // 3.所有权限为public的,返回值限定为String的,方法名称限定为test开头的,方法参数个数及类型不限的方法 execution(public java.lang.String test*(..)) // 4.所有权限为public的,返回值限定为String的,方法所在类限定为com.spring.study.springfx.aop.service包下的任意类,方法名称限定为test开头的,方法参数个数及类型不限的方法 execution(public java.lang.String com.spring.study.springfx.aop.service.*.test*(..)) // 5.所有权限为public的,返回值限定为String的,方法所在类限定为com.spring.study.springfx.aop.service包及其子包下的任意类,方法名称限定为test开头的,方法参数个数及类型不限的方法 execution(public java.lang.String com.spring.study.springfx.aop.service..*.test*(..)) // 6.所有权限为public的,返回值限定为String的,方法所在类限定为com.spring.study.springfx.aop.service包及其子包下的Dmz开头的类,方法名称限定为test开头的,方法参数个数及类型不限的方法 execution(public java.lang.String com.spring.study.springfx.aop.service..Dmz*.test*(..)) // 7.所有权限为public的,返回值限定为String的,方法所在类限定为com.spring.study.springfx.aop.service包及其子包下的Dmz开头的类,方法名称限定为test开头的,方法参数限定第一个为String类,第二个不限但是必须有两个参数 execution(public java.lang.String com.spring.study.springfx.aop.service..Dmz*.test*(String,*)) // 8.所有权限为public的,返回值限定为String的,方法所在类限定为com.spring.study.springfx.aop.service包及其子包下的Dmz开头的类,方法名称限定为test开头的,方法参数限定第一个为String类,第二个可有可无并且不限定类型 execution(public java.lang.String com.spring.study.springfx.aop.service..Dmz*.test*(String,..))
public
呢?其它修饰符行不行呢?修饰符的位置能不能写成*
这种形式呢?
@EnableAspectJAutoProxy(proxyTargetClass = true)
)那么修饰符还可以使用protected或者默认修饰符。但是不能使用private修饰符,因为CGLIB代理生成的代理类是继承目标类的,private方法子类无法复写,自然也无法代理。基于此,修饰符是不能写成*
这种格式的。@annotation表达式
语法
示例
// 代表所有被DmzAnnotation注解所标注的方法 // 使用注解的方法定义切点一般会和自定义注解配合使用 @annotation(com.spring.study.springfx.aop.annotation.DmzAnnotation)
within表达式
语法
示例
// within表达式只能指定到类级别,如下示例表示匹配com.spring.service.BusinessObject中的所有方法 within(com.spring.service.BusinessObject) // within表达式能够使用通配符,如下表达式表示匹配com.spring.service包(不包括子包)下的所有类 within(com.spring.service.*) // within表达式能够使用通配符,如下表达式表示匹配com.spring.service包及子包下的所有类 within(com.spring.service..*)
excecution表达式
以及annotation表达式
。所以下文对于其余几种本文就不做详细的介绍了,大家有兴趣的可以了解,没有兴趣的可以直接跳过。可以参考官网链接@within表达式
语法
annotation表达式
的区别在于,annotation表达式
是面向方法的,表示匹配带有指定注解的方法,而within表达式
是面向类的,表示匹配带有指定注解的类。示例
// 代表所有被DmzAnnotation注解所标注的类 // 使用注解的方法定义切点一般会和自定义注解配合使用 @within(com.spring.study.springfx.aop.annotation.DmzAnnotation)
arg表达式
语法
示例
// 匹配所有只有一个String类型的方法 args(String) // 匹配所有有两个参数并且第一个参数为String的方法 args(String,*) // 匹配所有第一个参数是String类型参数的方法 args(String,..)
@args表达式
语法
示例
@annotation表达式
以及@within表达式
类似,@annotation表达式
表示匹配使用了指定注解的方法,@within表达式
表达式表示匹配了使用了指定注解的类,而@args表达式
则代表使用了被指定注解标注的类作为方法参数this表达式
// 代表匹配所有代理类是AccountService的类 this(com.xyz.service.AccountService)
target表达式
// 代表匹配所有目标类是AccountService的类 target(com.xyz.service.AccountService)
定义切点
@Aspect @Component public class DmzAnnotationAspect { @Pointcut("execution(public * *(..))") private void executionPointcut() {} @Pointcut("@annotation(com.spring.study.springfx.aop.annotation.DmzAnnotation)") private void annotationPointcut() { } // 可以组合使用定义好的切点 // 表示同时匹配满足两者 @Pointcut("executionPointcut() && annotationPointcut()") private void annotationPointcutAnd() {} // 满足其中之一即可 @Pointcut("executionPointcut() || annotationPointcut()") private void annotationPointcutOr() {} // 不匹配即可 @Pointcut("!executionPointcut()") private void annotationPointcutNot() {} }
4、申明通知
通知的类型
Before
AfterReturning
AfterThrowing
After(Finally)
Around
实际应用
@Aspect @Component public class DmzAspect { // 申明的切点 @Pointcut("execution(public * *(..))") private void executionPointcut() {} @Pointcut("@annotation(com.spring.study.springfx.aop.annotation.DmzAnnotation)") private void annotationPointcut() {} // 前置通知,在目标方法前调用 @Before("executionPointcut()") public void executionBefore() { System.out.println("execution aspect Before invoke!"); } // 后置通知,在目标方法返回后调用 @AfterReturning("executionPointcut()") public void executionAfterReturning() { System.out.println("execution aspect AfterReturning invoke!"); } // 最终通知,正常的执行时机在AfterReturning之前 @After("executionPointcut()") public void executionAfter() { System.out.println("execution aspect After invoke!"); } // 异常通知,发生异常时调用 @AfterThrowing("executionPointcut()") public void executionAfterThrowing() { System.out.println("execution aspect AfterThrowing invoke!"); } // 环绕通知,方法调用前后都能进行处理 @Around("executionPointcut()") public void executionAround(ProceedingJoinPoint pjp) throws Throwable{ System.out.println("execution aspect Around(before) invoke!"); System.out.println(pjp.proceed()); System.out.println("execution aspect Around(after) invoke!"); } }
通知中的参数
ProceedingJoinPoint
类型的参数。这个ProceedingJoinPoint
意味着当前执行中的方法,它继承了JoinPoint
接口。JoinPoint
getArgs()
: 返回当前的切点的参数getThis()
: 返回代理对象getTarget()
: 返回目标对象getSignature()
: 返回这个目标类中方法的描述信息,比如修饰符,名称等ProceedingJoinPoint
通知的排序
org.springframework.core.annotation.Order
注解或者让切面实现org.springframework.core.Ordered
接口。如下:@Aspect @Component @Order(-1) public class DmzFirstAspect { // ... } @Aspect @Component @Order(0) public class DmzSecondAspect { // ... }
AOP的应用
全局异常处理器
@RestControllerAdvice及
@ExceptionHandler`,总共分为以下几步:
定义错误码及对应异常信息
@AllArgsConstructor @Getter public enum ErrorCode { INTERNAL_SERVICE_ERROR(500100, "服务端异常"), PASSWORD_CAN_NOT_BE_NULL(500211, "登录密码不能为空"), PASSWORD_ERROR(500215, "密码错误"); private int code; private String msg; } // 统一返回的参数 @Data public class Result<T> { private int code; private String msg; private T data; public static <T> Result<T> success(T data){ return new Result<T>(data); } public static <T> Result<T> error(ErrorCode cm){ return new Result<T>(cm.getMsg); } }
封装对应异常
public class GlobalException extends RuntimeException { private static final long serialVersionUID = 1L; private int errorCode; public CreativeArtsShowException(int errorCode) { this.errorCode = errorCode; } public CreativeArtsShowException(ErrorCode errorCode) { super(errorCode.getMsg()); this.errorCode = errorCode.getCode(); } }
申明异常处理器
//该注解定义全局异常处理类 //@ControllerAdvice //@ResponseBody // 使用@RestControllerAdvice可以替代上面两个注解 @RestControllerAdvice //@ControllerAdvice(basePackages ="com.example.demo.controller") 可指定包 public class GlobalExceptionHandler { @ExceptionHandler(value=GlobalException.class) //该注解声明异常处理方法 public Result<String> exceptionHandler(HttpServletRequest request, Exception e){ e.printStackTrace(); // 在这里针对异常做自己的处理 } }
org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler
)。我们只需要将自定义的异常处理类继承这个ResponseEntityExceptionHandler
然后复写对应的方法即可完成全局异常处理。这个类中的方法很简单,所以这里就不放代码了。@ExceptionHandler({ HttpRequestMethodNotSupportedException.class, HttpMediaTypeNotSupportedException.class, HttpMediaTypeNotAcceptableException.class, MissingPathVariableException.class, MissingServletRequestParameterException.class, ServletRequestBindingException.class, ConversionNotSupportedException.class, TypeMismatchException.class, HttpMessageNotReadableException.class, HttpMessageNotWritableException.class, MethodArgumentNotValidException.class, MissingServletRequestPartException.class, BindException.class, NoHandlerFoundException.class, AsyncRequestTimeoutException.class })
接口日志
@RestController @RequestMapping("/test/simple") @Validated @Slf4j public class ValidationController { @GetMapping("/valid") public String testValid( @Max(10) int age, @Valid @NotBlank String name) { log.info("接口入参:" + age + " " + name); return "OK"; } }
定义一个注解
@Target({ElementType.TYPE,ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited public @interface Log { }
申明切面
@Aspect @Component @Slf4j public class LogAspect { @Pointcut("@annotation(com.spring.study.springfx.aop.annotation.Log)") private void pointcut() { } @Before("pointcut()") public void before(JoinPoint joinPoint) { MethodSignature signature = (MethodSignature) joinPoint.getSignature(); Method method = signature.getMethod(); Parameter[] parameters = method.getParameters(); Object[] args = joinPoint.getArgs(); String methodName = method.getName(); Class<?> declaringClass = method.getDeclaringClass(); String simpleName = declaringClass.getSimpleName(); StringBuilder sb = new StringBuilder(); sb.append(simpleName).append(".").append(methodName).append(" ["); for (int i = 0; i < parameters.length; i++) { String name = parameters[i].getName(); sb.append(name); sb.append(":"); sb.append(args[i]); sb.append(";"); } sb.setLength(sb.length() - 1); sb.append("]"); log.info(sb.toString()); } }
@RestController @RequestMapping("/test/simple") @Validated @Slf4j public class ValidationController { @Log @GetMapping("/valid") public String testValid( @Max(10) int age, @Valid @NotBlank String name) { log.info("接口入参:" + age + " " + name); return "OK"; } } // 控制台输出日志: // ValidationController.testValid [age:0;name:11]
总结
本网页所有视频内容由 imoviebox边看边下-网页视频下载, iurlBox网页地址收藏管理器 下载并得到。
ImovieBox网页视频下载器 下载地址: ImovieBox网页视频下载器-最新版本下载
本文章由: imapbox邮箱云存储,邮箱网盘,ImageBox 图片批量下载器,网页图片批量下载专家,网页图片批量下载器,获取到文章图片,imoviebox网页视频批量下载器,下载视频内容,为您提供.
阅读和此文章类似的: 全球云计算