Guice 学习(八)AOP (面向切面的编程)

2024-05-23 07:08

本文主要是介绍Guice 学习(八)AOP (面向切面的编程),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Guice的AOP还是很弱的,目前仅仅支持方法级别上的,另外灵活性也不是很高。看如下示例:

Guice支持AOP的条件是:

类必须是public或者package (default)
类不能是final类型的
方法必须是public,package或者protected
方法不能使final类型的
实例必须通过Guice的@Inject注入或者有一个无参数的构造函数

且看示例代码

1、定义接口
package com.guice.AOP;import com.google.inject.ImplementedBy;@ImplementedBy(ServiceImpl.class)
public interface Service {public void sayHello();
}
2、定义实现类
package com.guice.AOP;import com.google.inject.Singleton;
import com.google.inject.name.Named;@Singleton
public class ServiceImpl implements Service {@Named("log")@Overridepublic void sayHello() {System.out.println(String.format("[%s#%d] execute %s at %d", this.getClass().getSimpleName(), hashCode(), "sayHello", System.nanoTime()));}
}
3、定义切面
package com.guice.AOP;import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;/***  TODO :自定义的方法拦截器,用于输出方法的执行时间* * @author E468380*/
public class LoggerMethodInterceptor implements MethodInterceptor {@Overridepublic Object invoke(MethodInvocation invocation) throws Throwable {String name = invocation.getMethod().getName();long startTime = System.nanoTime();System.out.println(String.format("before method[%s] at %s", name, startTime));Object obj = null;try {obj = invocation.proceed();// 执行服务} finally {long endTime = System.nanoTime();System.out.println(String.format("after method[%s] at %s, cost(ns):%d", name, endTime, (endTime - startTime)));}return obj;}
}
4、测试类
package com.guice.AOP;import com.google.inject.Binder;
import com.google.inject.Guice;
import com.google.inject.Inject;
import com.google.inject.Injector;
import com.google.inject.Module;
import com.google.inject.matcher.Matchers;
import com.google.inject.name.Names;public class AopTest {@Injectprivate Service service;public static void main(String[] args) {Injector injector = Guice.createInjector(new Module() {@Overridepublic void configure(Binder binder) {binder.bindInterceptor(Matchers.any(), Matchers.annotatedWith(Names.named("log")), new LoggerMethodInterceptor());}});injector.getInstance(AopTest.class).service.sayHello();injector.getInstance(AopTest.class).service.sayHello();injector.getInstance(AopTest.class).service.sayHello();}
}

输出结果:

 before method[sayHello] at 18832801981960[ServiceImpl$$EnhancerByGuice$$d4244950#1109685565] execute sayHello at 18832817170768after method[sayHello] at 18832817378285, cost(ns):15396325before method[sayHello] at 18832817542181[ServiceImpl$$EnhancerByGuice$$d4244950#1109685565] execute sayHello at 18832817640327after method[sayHello] at 18832817781772, cost(ns):239591before method[sayHello] at 18832817920651[ServiceImpl$$EnhancerByGuice$$d4244950#1109685565] execute sayHello at 18832818013023after method[sayHello] at 18832818132657, cost(ns):212006

关于此结果有几点说明:

(1)由于使用了AOP我们的服务得到的不再是我们写的服务实现类了,而是一个继承的子类,这个子类应该是在内存中完成的。

(2)除了第一次调用比较耗时外(可能guice内部做了比较多的处理),其它调用事件为0毫秒(我们的服务本身也没做什么事)。

(3)确实完成了我们期待的AOP功能。



5、切面注入依赖

如果一个切面(拦截器)也需要注入一些依赖怎么办?

在这里我们声明一个前置服务,输出所有调用的方法名称。

①定义接口
package com.guice.AOP;import org.aopalliance.intercept.MethodInvocation;import com.google.inject.ImplementedBy;@ImplementedBy(BeforeServiceImpl.class)
public interface BeforeService {void before(MethodInvocation invocation);
}
②定义实现类
package com.guice.AOP;import org.aopalliance.intercept.MethodInvocation;public class BeforeServiceImpl implements BeforeService {@Overridepublic void before(MethodInvocation invocation) {System.out.println("Before--->" + invocation.getClass().getName());}
}
③定义切面
package com.guice.AOP;import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;import com.google.inject.Inject;//这个切面依赖前置服务
public class AfterMethodIntercepter implements MethodInterceptor {@Injectprivate BeforeService beforeService;@Overridepublic Object invoke(MethodInvocation invocation) throws Throwable {beforeService.before(invocation);Object obj = null;try {obj = invocation.proceed();} finally {System.out.println("after--->" + invocation.getClass().getName());}return obj;}
}
④编写测试类
package com.guice.AOP;import com.google.inject.Binder;
import com.google.inject.Guice;
import com.google.inject.Inject;
import com.google.inject.Injector;
import com.google.inject.Module;
import com.google.inject.matcher.Matchers;
import com.google.inject.name.Names;public class AopTest2 {@Injectprivate Service service;public static void main(String[] args) {Injector injector = Guice.createInjector(new Module() {@Overridepublic void configure(Binder binder) {AfterMethodIntercepter after = new AfterMethodIntercepter();binder.requestInjection(after);binder.bindInterceptor(Matchers.any(), Matchers.annotatedWith(Names.named("log")), after);}});injector.getInstance(AopTest2.class).service.sayHello();}}

输出结果:

 Before--->com.google.inject.internal.InterceptorStackCallback$InterceptedMethodInvocation[ServiceImpl$$EnhancerByGuice$$618294e9#506575947] execute sayHello at 20140444543338after--->com.google.inject.internal.InterceptorStackCallback$InterceptedMethodInvocation

说明
Binder绑定一个切面的API是:

com.google.inject.Binder.bindInterceptor(Matcher<? super Class<?>>, Matcher<? super Method>, MethodInterceptor...)

第一个参数是匹配类,第二个参数是匹配方法,第三个数组参数是方法拦截器。也就是说目前为止Guice只能拦截到方法,然后才做一些切面工作。

注意

尽管切面允许注入其依赖,但是这里需要注意的是,如果切面依赖仍然走切面的话那么程序就陷入了死循环,很久就会堆溢出。
Guice的AOP还是很弱的,目前仅仅支持方法级别上的,另外灵活性也不是很高。

这篇关于Guice 学习(八)AOP (面向切面的编程)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!


原文地址:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.chinasem.cn/article/996165

相关文章

揭秘Python Socket网络编程的7种硬核用法

《揭秘PythonSocket网络编程的7种硬核用法》Socket不仅能做聊天室,还能干一大堆硬核操作,这篇文章就带大家看看Python网络编程的7种超实用玩法,感兴趣的小伙伴可以跟随小编一起... 目录1.端口扫描器:探测开放端口2.简易 HTTP 服务器:10 秒搭个网页3.局域网游戏:多人联机对战4.

Java并发编程必备之Synchronized关键字深入解析

《Java并发编程必备之Synchronized关键字深入解析》本文我们深入探索了Java中的Synchronized关键字,包括其互斥性和可重入性的特性,文章详细介绍了Synchronized的三种... 目录一、前言二、Synchronized关键字2.1 Synchronized的特性1. 互斥2.

Python异步编程中asyncio.gather的并发控制详解

《Python异步编程中asyncio.gather的并发控制详解》在Python异步编程生态中,asyncio.gather是并发任务调度的核心工具,本文将通过实际场景和代码示例,展示如何结合信号量... 目录一、asyncio.gather的原始行为解析二、信号量控制法:给并发装上"节流阀"三、进阶控制

Java进阶学习之如何开启远程调式

《Java进阶学习之如何开启远程调式》Java开发中的远程调试是一项至关重要的技能,特别是在处理生产环境的问题或者协作开发时,:本文主要介绍Java进阶学习之如何开启远程调式的相关资料,需要的朋友... 目录概述Java远程调试的开启与底层原理开启Java远程调试底层原理JVM参数总结&nbsMbKKXJx

Spring-AOP-ProceedingJoinPoint的使用详解

《Spring-AOP-ProceedingJoinPoint的使用详解》:本文主要介绍Spring-AOP-ProceedingJoinPoint的使用方式,具有很好的参考价值,希望对大家有所帮... 目录ProceedingJoinPoijsnt简介获取环绕通知方法的相关信息1.proceed()2.g

Java深度学习库DJL实现Python的NumPy方式

《Java深度学习库DJL实现Python的NumPy方式》本文介绍了DJL库的背景和基本功能,包括NDArray的创建、数学运算、数据获取和设置等,同时,还展示了如何使用NDArray进行数据预处理... 目录1 NDArray 的背景介绍1.1 架构2 JavaDJL使用2.1 安装DJL2.2 基本操

C#多线程编程中导致死锁的常见陷阱和避免方法

《C#多线程编程中导致死锁的常见陷阱和避免方法》在C#多线程编程中,死锁(Deadlock)是一种常见的、令人头疼的错误,死锁通常发生在多个线程试图获取多个资源的锁时,导致相互等待对方释放资源,最终形... 目录引言1. 什么是死锁?死锁的典型条件:2. 导致死锁的常见原因2.1 锁的顺序问题错误示例:不同

PyCharm接入DeepSeek实现AI编程的操作流程

《PyCharm接入DeepSeek实现AI编程的操作流程》DeepSeek是一家专注于人工智能技术研发的公司,致力于开发高性能、低成本的AI模型,接下来,我们把DeepSeek接入到PyCharm中... 目录引言效果演示创建API key在PyCharm中下载Continue插件配置Continue引言

四种Flutter子页面向父组件传递数据的方法介绍

《四种Flutter子页面向父组件传递数据的方法介绍》在Flutter中,如果父组件需要调用子组件的方法,可以通过常用的四种方式实现,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录方法 1:使用 GlobalKey 和 State 调用子组件方法方法 2:通过回调函数(Callb

SpringBoot实现动态插拔的AOP的完整案例

《SpringBoot实现动态插拔的AOP的完整案例》在现代软件开发中,面向切面编程(AOP)是一种非常重要的技术,能够有效实现日志记录、安全控制、性能监控等横切关注点的分离,在传统的AOP实现中,切... 目录引言一、AOP 概述1.1 什么是 AOP1.2 AOP 的典型应用场景1.3 为什么需要动态插