当前位置:网站首页>Implementing class target method exception using proxy object execution
Implementing class target method exception using proxy object execution
2022-08-04 23:06:00 【DanceDonkey】
使用JDKway when creating a dynamic proxy object,Usually it will be cast to the target interface type.
public class Test {
public static void main(String[] args) throws Exception{
BaseController baseController = new BaseControllerImpl();
InvocationHandler handler = new MyInvocationHandler(baseController);
BaseController target = (BaseController) Proxy.newProxyInstance(BaseController.class.getClassLoader(), new Class[]{
BaseController.class}, handler);
target.a4("111");
}
}
此时的target就是一个代理对象,同时是Proxy与BaseController的实例,At this time, it is possible to call the method of the interface when the method is called in the form of an interface,什么意思? 可参考如下代码
public static void main(String[] args)throws Exception {
Method a4 = BaseController.class.getMethod("a4", String.class);
Method a4Impl = BaseControllerImpl.class.getMethod("a4", String.class);
BaseControllerImpl baseController = new BaseControllerImpl();
a4Impl.invoke(baseController,"111");
a4.invoke(baseController,"222");
}
BaseController是接口,BaseControllerImpl 是实现类,got the interfacea4method and implementation typea4方法,然后创建了BaseController的一个实现类,Use the implementation class to invoke the two reflections separatelymethod,The call was found to be successful.

However, if the created proxy object is used to execute the method of the implementation class, an exception will be thrown.
public static void main(String[] args) throws Exception{
BaseController baseController = new BaseControllerImpl();
InvocationHandler handler = new MyInvocationHandler(baseController);
BaseController target = (BaseController) Proxy.newProxyInstance(BaseController.class.getClassLoader(), new Class[]{
BaseController.class}, handler);
Method a4 = BaseController.class.getMethod("a4", String.class);
Method a4Impl = BaseControllerImpl.class.getMethod("a4", String.class);
a4.invoke(target,"111");
a4Impl.invoke(target,"222");
}

This can actually be well understoodtarget是一个代理对象,是BaseController的代理对象,本身和BaseControllerImpl是没有关系的,They both achieved itBaseController接口,So it can be said to be a sibling relationship,However, the same method calls cannot be implemented between brothers,It must be the parent class or its own method.所以在JDKin the implemented proxy,When calling the interface target method,is a method of the interface to call.
可通过debugSee when the method is called on the proxy objectmethod签名,It is obvious that it is the method signature in the interface.对于SpringIn terms of the aspect declared in ,Aspect classes do not generate proxy objects,Just notificationSpringConfigured according to the aspectpointcut来检测bean是否需要创建代理对象,In which way to create etc,The method declared by the aspect class is only used to tellSpringWhich notification type it is.

边栏推荐
- PID Controller Improvement Notes No. 7: Improve the anti-overshoot setting of the PID controller
- 如何根据地址获取函数名
- 得不到你的心,就用“分布式锁”锁住你的人
- ClickHouse 二级索引
- Latex fast insert author ORCID
- 软件测试技术之如何编写测试用例(4)
- 【云原生 · Kubernetes】Kubernetes运维
- typeScript-闭包函数的使用
- [QNX Hypervisor 2.2用户手册]10.5 vdev ioapic
- TypeScript - the use of closure functions
猜你喜欢
随机推荐
the warmest home
typeScript-闭包函数的使用
正则表达式绕过
[QNX Hypervisor 2.2用户手册]10.6 vdev mc146818
2022/8/4 树上差分+线段树
得不到你的心,就用“分布式锁”锁住你的人
【字符串函数内功修炼】strlen + strstr + strtok + strerror(三)
Go 编程语言(简介)
为何越来越多人选择进入软件测试行业?深度剖析软件测试的优势...
How to make a video gif?Try this video making gif artifact
go语言的日志实现(打印日志、日志写入文件、日志切割)
TypeScript - the use of closure functions
一招包治pycharm DEBUG报错 UnicodeDecodeError: ‘utf-8‘ codec can‘t decode
js中小数四则运算精度问题原因及解决办法
如何根据地址获取函数名
Will we still need browsers in the future?(feat. Maple words Maple language)
基于内容的图像检索系统设计与实现--颜色信息--纹理信息--形状信息--PHASH--SHFT特征点的综合检测项目,包含简易版与完整版的源码及数据!
一点点读懂cpufreq(一)
One trick to cure pycharm DEBUG error UnicodeDecodeError: 'utf-8' codec can't decode
零基础如何入门软件测试?再到测开(小编心得)









