最近在看jdbc源码时,在DriverManager中的getConnection方法中见到了Reflection.getCallerClass()方法,尝试看了看源码。
源代码如下
/** Returns the class of the caller of the method calling this method,
ignoring frames associated with java.lang.reflect.Method.invoke()
and its implementation. */
@CallerSensitive
@IntrinsicCandidate
public static native Class<?> getCallerClass();
注释的关键部分含义为返回调用该方法的方法的调用者的类,绕口的很。
再看一下两个注解:
@CallerSensitive
@IntrinsicCandidate
CallerSensitive注解:
在 Java 中,@CallerSensitive 注解用于标记那些对调用者敏感的方法。通俗的讲,这些方法的逻辑可能会依赖于谁调用了它。比如,某些方法可能会根据调用者的类来改变其行为、权限或返回值。
关于该方法的作用,简单来说,方便跳过反射相关的一些方法,从而找到真正发起反射请求的类,从而解决通过反射导致的安全漏洞。
具体可参考:https://blog.csdn.net/HEL_WOR/article/details/50199797
IntrinsicCandidate
标记某些方法可以被编译器优化为内在(intrinsic)操作
总结
所以Reflection.getCallerClass()方法的作用为:获取到调用该方法的源头类的Class,也就是说你可能通过多次反射调用了一个方法,该方法可以帮助找到调用该方法的源头类。
参考示例
该方法的常见应用即,当我们查看报错日志,如NullPointException,我们可以看到具体在哪个类多少行调用出错的,就是使用了该方法配合反射得到。
参考链接:https://juejin.cn/post/6904563648233766920