本文最后更新于114 天前,其中的信息可能已经过时,如有错误请发送邮件到3368129372@qq.com
最近在手搓链路追踪的一个sdk(试着用dubbo),多处用到反射与切面相关技术,特此记录
导包
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.6</version>
</dependency>
反射常用方法
工具类:org.springframework.util.ReflectionUtils
//a的class找到b方法
Method method = ReflectionUtils.findMethod(Class a, Method b);
//a对象执行b方法
Object result = ReflectionUtils.invoke(Method b, Object a);
最近找到工作了吗
在京东实习嘿嘿