如何从动态代理中解开原始对象
解开动态代理以检索下面的原始对象的最佳方法是什么? 动态代理已使用 java.lang.reflect.Proxy.newProxyInstance()
创建,
谢谢。
what's the best approach to unwrap a dynamic proxy to retrieve the original object beneath?
The dynamic proxy has been created using java.lang.reflect.Proxy.newProxyInstance()
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
每个代理都有一个
InitationHandler< /code>
与之关联。只有
IncationHandler
知道哪个对象(如果有)位于代理之下。如果您控制代理的创建,那么您可以提供自己的InitationHandler
,它将具有您想要的额外功能(即能够公开底层对象)。如果您不这样做,那我恐怕你就不走运了。Each proxy has an
InvocationHandler
associated with it. Only theInvocationHandler
knows which object (if any) underlies the proxy. If you control the creation of the proxy, then you can supply your ownInvocationHandler
that will have the extra functionality that you desire (i.e. will be able to disclose the underlying object.) If you don't, then I am afraid you're out of luck.没有好的方法:Proxy.getInspirationHandler(proxy) 返回处理程序,但问题是从处理程序中提取原始对象。如果您的处理程序是匿名类,则提取原始对象的唯一方法是使用反射并从名为 val$something 的字段中提取原始对象 - 非常丑陋的方法。
更好的方法是使用 getter 创建非匿名处理程序类,然后执行以下操作:
There's no good method: Proxy.getInvocationHandler(proxy) returns handler, but the problem is to extract the original object from the handler. If your handler is an anonymous class, the only way to extract original object is to use reflection and extract original from field named val$something - very ugly method.
Better way is to create non-anonymous handler class with a getter, then you do:
您可以使用Proxy.getInitationHandler(proxy)方法来获取原始的InitationHandler。
You can use the Proxy.getInvocationHandler(proxy) method to obtain the original InvocationHandler.