quarkus依赖注入之五:拦截器(Interceptor)

打印 上一主题 下一主题

主题 988|帖子 988|积分 2964

欢迎访问我的GitHub

这里分类和汇总了欣宸的全部原创(含配套源码):https://github.com/zq2599/blog_demos
本篇概览


  • 本文是《quarkus依赖注入》系列的第五篇,经过前面的学习,咱们熟悉了依赖注入的基本特性,接下来进一步了解相关的高级特性,先从本篇的拦截器开始
  • 如果您熟悉spring的话,对拦截器应该不会陌生,通过拦截器可以将各种附加功能与被拦截代码的主体解耦合,例如异常处理、日志、数据同步等多种场景
  • 本篇会演示如何自定义拦截器,以及如何对bean的方法进行进行拦截,由以下章节构成

  • 定义和使用拦截器的操作步骤介绍
  • 拦截异常
  • 拦截构造方法
  • 获取被拦截方法的参数
  • 多个拦截器之间传递参数
定义和使用拦截器的操作步骤介绍


  • 定义和使用拦截器一共要做三件事:

  • 定义:新增一个注解(假设名为A),要用@InterceptorBinding修饰该注解
  • 实现:拦截器A到底要做什么事情,需要在一个类中实现,该类要用两个注解来修饰:A和Interceptor
  • 使用:用A来修饰要拦截器的bean


  • 整个流程如下图所示


  • 接下来通过实战掌握拦截器的开发和使用,从最常见的拦截异常开始
拦截异常


  • 写一个拦截器,在程序发生异常的时候可以捕获到并将异常打印出来
  • 首先是定义一个拦截器,这里的拦截器名为HandleError,注意要用InterceptorBinding修饰
  1. package com.bolingcavalry.interceptor.define;
  2. import javax.interceptor.InterceptorBinding;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. import static java.lang.annotation.ElementType.TYPE;
  8. @InterceptorBinding
  9. @Target({TYPE, ElementType.METHOD})
  10. @Retention(RetentionPolicy.RUNTIME)
  11. public @interface HandleError {
  12. }
复制代码

  • 其次是实现拦截器的具体功能,下面代码有几处要注意的地方稍后会提到
  1. package com.bolingcavalry.interceptor.impl;
  2. import com.bolingcavalry.interceptor.define.HandleError;
  3. import io.quarkus.arc.Priority;
  4. import io.quarkus.logging.Log;
  5. import javax.interceptor.AroundInvoke;
  6. import javax.interceptor.Interceptor;
  7. import javax.interceptor.InvocationContext;
  8. @HandleError
  9. @Interceptor
  10. @Priority(Interceptor.Priority.APPLICATION +1)
  11. public class HandleErrorInterceptor {
  12.     @AroundInvoke
  13.     Object execute(InvocationContext context) {
  14.         try {
  15.             // 注意proceed方法的含义:调用下一个拦截器,直到最后一个才会执行被拦截的方法
  16.             return context.proceed();
  17.         } catch (Exception exception) {
  18.             Log.errorf(exception,
  19.                     "method error from %s.%s\n",
  20.                     context.getTarget().getClass().getSimpleName(),
  21.                     context.getMethod().getName());
  22.         }
  23.         return null;
  24.     }
  25. }
复制代码

  • 上述代码有以下四点需要注意:

  • Priority注解的作用是设定HandleError拦截器的优先级(值越小优先级越高),可以同时用多个拦截器拦截同一个方法
  • AroundInvoke注解的作用,是表明execute会在拦截bean方法时被调用
  • proceed方法的作用,并非是执行被拦截的方法,而是执行下一个拦截器,直到最后一个拦截器才会执行被拦截的方法
  • 可以从入参context处取得被拦截实例和方法的信息


  • 然后是使用拦截器,这里创建个bean来演示拦截器如何使用,bean里面有个业务方法会抛出异常,可见拦截器使用起来很简单:用HandleError修饰bean即可
  1. @ApplicationScoped
  2. @HandleError
  3. public class HandleErrorDemo {
  4.     public void executeThrowError() {
  5.         throw new IllegalArgumentException("this is business logic exception");
  6.     }
  7. }
复制代码

  • 验证拦截器的单元测试代码如下,只要执行HandleErrorDemo的executeThrowError方法就会抛出异常,然后观察日志中是否有拦截器日志信息即可验证拦截器是否符合预期
  1. @QuarkusTest
  2. public class InterceptorTest {
  3.     @Inject
  4.     HandleErrorDemo handleErrorDemo;
  5.     @Test
  6.     public void testHandleError() {
  7.         handleErrorDemo.executeThrowError();
  8.     }
  9. }
复制代码

  • 执行单元测试,如下图红框所示,拦截器捕获了异常并打印出异常信息


  • 至此,拦截异常的操作就完成了,除了用AroundInvoke拦截普通的bean方法,还能用AroundConstruct拦截bean的构造方法,接下里编码体验
拦截构造方法


  • 拦截器定义
  1. @InterceptorBinding
  2. @Target({TYPE, ElementType.METHOD})
  3. @Retention(RetentionPolicy.RUNTIME)
  4. public @interface HandleConstruction {
  5. }
复制代码

  • HandleConstruction拦截器的实现,要注意的有两点稍后会提到
  1. @HandleConstruction
  2. @Interceptor
  3. @Priority(Interceptor.Priority.APPLICATION +1)
  4. public class HandleConstructionInterceptor {
  5.     @AroundConstruct
  6.     void execute(InvocationContext context) throws Exception {
  7.         // 执行业务逻辑可以在此
  8.         Log.infov("start construction interceptor");
  9.         // 执行bean的构造方法
  10.         context.proceed();
  11.         // 注意,对于context.getTarget()的返回值,此时不是null,如果在context.proceed()之前,则是null
  12.         Log.infov("bean instance of {0}", context.getTarget().getClass().getSimpleName());
  13.     }
  14. }
复制代码

  • 上述代码有两处要注意的

  • AroundConstruct注解修饰后,execute方法会在bean的构造方法执行时被调用
  • context.getTarget()的返回值,只有在context.proceed执行后才不为空


  • 拦截器的使用,用HandleConstruction修饰要拦截的bean,为了调试和分析,还在构造方法中打印了日志
  1. @ApplicationScoped
  2. @HandleConstruction
  3. public class HandleonstructionDemo {
  4.     public HandleonstructionDemo() {
  5.         super();
  6.         Log.infov("construction of {0}", HandleonstructionDemo.class.getSimpleName());
  7.     }
  8.     public void hello() {
  9.         Log.info("hello world!");
  10.     }
  11. }
复制代码

  • 用单元测试来验证拦截器能否成功拦截构造方法
  1. @QuarkusTest
  2. public class InterceptorTest {
  3.     @Inject
  4.     HandleonstructionDemo handleonstructionDemo;
  5.     @Test
  6.     public void testHandleonstruction() {
  7.         handleonstructionDemo.hello();
  8.     }
  9. }
复制代码

  • 运行单元测试,控制台输出如下,可见构造方法拦截成功
  1. 2022-03-27 15:51:03,158 INFO  [io.quarkus] (main) Quarkus 2.7.3.Final on JVM started in 0.867s. Listening on: http://localhost:8081
  2. 2022-03-27 15:51:03,158 INFO  [io.quarkus] (main) Profile test activated.
  3. 2022-03-27 15:51:03,158 INFO  [io.quarkus] (main) Installed features: [agroal, cdi, narayana-jta, resteasy, smallrye-context-propagation, vertx]
  4. 2022-03-27 15:51:03,164 INFO  [com.bol.int.dem.HandleonstructionDemo] (main) construction of HandleonstructionDemo
  5. 2022-03-27 15:51:03,397 INFO  [com.bol.int.imp.HandleConstructionInterceptor] (main) start construction interceptor
  6. 2022-03-27 15:51:03,398 INFO  [com.bol.int.dem.HandleonstructionDemo] (main) construction of HandleonstructionDemo
  7. 2022-03-27 15:51:03,398 INFO  [com.bol.int.imp.HandleConstructionInterceptor] (main) bean instance of HandleonstructionDemo
  8. 2022-03-27 15:51:03,398 INFO  [com.bol.int.dem.HandleonstructionDemo] (main) hello world!
  9. 2022-03-27 15:51:03,416 INFO  [io.quarkus] (main) Quarkus stopped in 0.015s
复制代码
获取被拦截方法的参数


  • 拦截方法时,可能需要知道方法入参的值,才好实现具体的拦截功能(如参数校验),接下来就试试如何取得被拦截方法的参数并打印到日志中
  • 首先是拦截器定义
  1. @InterceptorBinding
  2. @Target({TYPE, ElementType.METHOD})
  3. @Retention(RetentionPolicy.RUNTIME)
  4. public @interface TrackParams {
  5. }
复制代码

  • 拦截器实现,可以用context.getParameters方法取得被拦截方法的入参数组,然后遍历并打印
  1. @TrackParams
  2. @Interceptor
  3. @Priority(Interceptor.Priority.APPLICATION + 1)
  4. public class TrackParamsInterceptor {
  5.     @AroundInvoke
  6.     Object execute(InvocationContext context) throws Exception {
  7.         // context.getParameters()返回拦截方法的所有参数,
  8.         // 用Optional处理非空时候的数组
  9.         Optional.of(Arrays.stream(context.getParameters()))
  10.                 .ifPresent(stream -> {
  11.                     stream.forEach(object -> Log.infov("parameter type [{0}], value [{1}]",
  12.                                                        object.getClass().getSimpleName(),
  13.                                                        object)
  14.                     );
  15.                 });
  16.         return context.proceed();
  17.     }
  18. }
复制代码

  • 使用拦截器的bean,其hello方法有两个入参,正常情况下会在拦截器中打印出来
  1. @ApplicationScoped
  2. @TrackParams
  3. public class TrackParamsDemo {
  4.     public void hello(String name, int id) {
  5.         Log.infov("Hello {0}, your id is {1}", name, id);
  6.     }
  7. }
复制代码

  • 测试类,调用了TrackParamsDemo的hello方法
  1. @QuarkusTest
  2. public class InterceptorTest {
  3.     @Inject
  4.     TrackParamsDemo trackParamsDemo;
  5.     @Test
  6.     public void testTrackParams() {
  7.         trackParamsDemo.hello("Tom", 101);
  8.     }
  9. }
复制代码

  • 执行单元测试,控制台输出如下,可见hello方法的两个入参的类型和值都被拦截器打印出来了
  1. 2022-03-27 17:15:46,582 INFO  [io.quarkus] (main) Quarkus 2.7.3.Final on JVM started in 0.905s. Listening on: http://localhost:8081
  2. 2022-03-27 17:15:46,582 INFO  [io.quarkus] (main) Profile test activated.
  3. 2022-03-27 17:15:46,582 INFO  [io.quarkus] (main) Installed features: [agroal, cdi, narayana-jta, resteasy, smallrye-context-propagation, vertx]
  4. 2022-03-27 17:15:46,587 INFO  [com.bol.int.dem.HandleonstructionDemo] (main) construction of HandleonstructionDemo
  5. 2022-03-27 17:15:46,827 INFO  [com.bol.int.imp.TrackParamsInterceptor] (main) parameter type [String], value [Tom]
  6. 2022-03-27 17:15:46,827 INFO  [com.bol.int.imp.TrackParamsInterceptor] (main) parameter type [Integer], value [101]
  7. 2022-03-27 17:15:46,827 INFO  [com.bol.int.dem.TrackParamsDemo] (main) Hello Tom, your id is 101
  8. 2022-03-27 17:15:46,845 INFO  [io.quarkus] (main) Quarkus stopped in 0.015s
复制代码

  • 以上就是获取被拦截方法入参的操作了,如果被拦截的构造方法也有入参,也能用此方式全部获取到
多个拦截器之间传递参数


  • 多个拦截器拦截同一个方法是很正常的,他们各司其职,根据优先级按顺序执行,如果这些拦截器之间有一定逻辑关系,例如第二个拦截器需要第一个拦截器的执行结果,此时又该如何呢?
  • quarkus支持不同拦截器间共享同一个上下文的数据(这让我想到了数据总线),接下来就演示多个拦截器之间是如何共享数据的
  • 首先,定义拦截器,这里增加了一个常量KEY_PROCEED_INTERCEPTORS,后面在拦截器的实现中会用到
  1. @InterceptorBinding
  2. @Target({TYPE, ElementType.METHOD})
  3. @Retention(RetentionPolicy.RUNTIME)
  4. public @interface ContextData {
  5.     String KEY_PROCEED_INTERCEPTORS = "proceedInterceptors";
  6. }
复制代码

  • 其次,首先拦截器,因为要演示多个拦截器共享数据,这里会有两个拦截器,为了简化开发,先写个父类,把两个拦截器的公共代码写入父类,可见拦截器之间共享数据的关键是context.getContextData()方法的返回值,这是个map,某个拦截器向此map中放入的数据,可以在后面的拦截器中取得,这里为了演示,将当前实例的类名存入了map中
  1. package com.bolingcavalry.interceptor.impl;
  2. import io.quarkus.logging.Log;
  3. import javax.interceptor.InvocationContext;
  4. import java.util.ArrayList;
  5. import java.util.List;
  6. import java.util.Map;
  7. import static com.bolingcavalry.interceptor.define.ContextData.KEY_PROCEED_INTERCEPTORS;
  8. public class BaseContextDataInterceptor {
  9.     Object execute(InvocationContext context) throws Exception {
  10.         // 取出保存拦截器间共享数据的map
  11.         Map<String, Object> map = context.getContextData();
  12.         List<String> list;
  13.         String instanceClassName = this.getClass().getSimpleName();
  14.         // 根据指定key从map中获取一个list
  15.         if (map.containsKey(KEY_PROCEED_INTERCEPTORS)) {
  16.             list = (List<String>) map.get(KEY_PROCEED_INTERCEPTORS);
  17.         } else {
  18.             // 如果map中没有,就在此新建一个list,存如map中
  19.             list = new ArrayList<>();
  20.             map.put(KEY_PROCEED_INTERCEPTORS, list);
  21.             Log.infov("from {0}, this is first processor", instanceClassName);
  22.         }
  23.         // 将自身内容存入list中,这样下一个拦截器只要是BaseContextDataInterceptor的子类,
  24.         // 就能取得前面所有执行过拦截操作的拦截器
  25.         list.add(instanceClassName);
  26.         Log.infov("From {0}, all processors {0}", instanceClassName, list);
  27.         return context.proceed();
  28.     }
  29. }
复制代码

  • 再新建一个拦截器实现类ContextDataInterceptorA,是BaseContextDataInterceptor的子类:
  1. @ContextData
  2. @Interceptor
  3. @Priority(Interceptor.Priority.APPLICATION + 1)
  4. public class ContextDataInterceptorA extends BaseContextDataInterceptor {
  5.     @AroundInvoke
  6.     Object execute(InvocationContext context) throws Exception {
  7.         return super.execute(context);
  8.     }
  9. }
复制代码

  • 另一个拦截器实现类ContextDataInterceptorB,注意它的Priority注解的值,表明其优先级低于ContextDataInterceptorA
  1. @ContextData
  2. @Interceptor
  3. @Priority(Interceptor.Priority.APPLICATION + 2)
  4. public class ContextDataInterceptorB extends BaseContextDataInterceptor {
  5.     @AroundInvoke
  6.     Object execute(InvocationContext context) throws Exception {
  7.         return super.execute(context);
  8.     }
  9. }
复制代码

  • 然后是被拦截bean
  1. @ApplicationScoped
  2. @ContextData
  3. public class ContextDataDemo {
  4.     public void hello() {
  5.         Log.info("Hello world!");
  6.     }
  7. }
复制代码

  • 单元测试代码
  1. @QuarkusTest
  2. public class InterceptorTest {
  3.     @Inject
  4.     ContextDataDemo contextDataDemo;
  5.     @Test
  6.     public void testContextData() {
  7.         contextDataDemo.hello();
  8.     }
  9. }
复制代码

  • 执行单元测试,控制台输入如下,可见执行顺序分别是ContextDataInterceptorA、ContextDataInterceptorB、被拦截方法,另外,存放在共享数据中的内容也随着拦截器的执行,越来越多,符合预期
  1. 2022-03-27 23:29:27,703 INFO  [io.quarkus] (main) Quarkus 2.7.3.Final on JVM started in 0.903s. Listening on: http://localhost:8081
  2. 2022-03-27 23:29:27,703 INFO  [io.quarkus] (main) Profile test activated.
  3. 2022-03-27 23:29:27,703 INFO  [io.quarkus] (main) Installed features: [agroal, cdi, narayana-jta, resteasy, smallrye-context-propagation, vertx]
  4. 2022-03-27 23:29:27,708 INFO  [com.bol.int.dem.HandleonstructionDemo] (main) construction of HandleonstructionDemo
  5. 2022-03-27 23:29:27,952 INFO  [com.bol.int.imp.BaseContextDataInterceptor] (main) from ContextDataInterceptorA, this is first processor
  6. 2022-03-27 23:29:27,953 INFO  [com.bol.int.imp.BaseContextDataInterceptor] (main) From ContextDataInterceptorA, all processors ContextDataInterceptorA
  7. 2022-03-27 23:29:27,953 INFO  [com.bol.int.imp.BaseContextDataInterceptor] (main) From ContextDataInterceptorB, all processors ContextDataInterceptorB
  8. 2022-03-27 23:29:27,953 INFO  [com.bol.int.dem.ContextDataDemo] (main) Hello world!
  9. 2022-03-27 23:29:27,971 INFO  [io.quarkus] (main) Quarkus stopped in 0.015s
复制代码

  • 至此,有关拦截器的实战已经完成,往后不管是自建拦截器还是使用已有拦截器,相信您都能从容应对,信手拈来,有了拦截器,我们在增强应用能力的同时还能保持低耦合性,用好它,打造更完善的应用。
源码下载

名称链接备注项目主页https://github.com/zq2599/blog_demos该项目在GitHub上的主页git仓库地址(https)https://github.com/zq2599/blog_demos.git该项目源码的仓库地址,https协议git仓库地址(ssh)git@github.com:zq2599/blog_demos.git该项目源码的仓库地址,ssh协议

  • 这个git项目中有多个文件夹,本次实战的源码在quarkus-tutorials文件夹下,如下图红框

  • quarkus-tutorials是个父工程,里面有多个module,本篇实战的module是basic-di,如下图红框

欢迎关注博客园:程序员欣宸

学习路上,你不孤单,欣宸原创一路相伴...

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

干翻全岛蛙蛙

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表