在 Java 中检索代理调用对象的接口类

发布于 2025-01-08 12:30:35 字数 86 浏览 0 评论 0原文

我有一个接口,其实现在运行时决定,并给出一个代理对象作为其动态实现。我想检索此代理对象实现的接口以了解接口中的方法。有什么办法可以用 Java 做到这一点吗?

I have an Interface whose implementation is deciding at Runtime and is given a Proxy Object as its dynamic implementation. I want to retrieve the Interface which this proxy object implements to know the methods in the interface. Is there any way I can do so in Java.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没有你 2025-01-15 12:30:35

尝试一下(使用普通反射):

Class<?>[] interfaces = proxyInstance.getClass().getInterfaces();

对于以下代码:

Object proxyInstance = Proxy.newProxyInstance(
    getClass().getClassLoader(), 
    new Class<?>[] {Serializable.class},
    new InvocationHandler() /**/);

它正确返回 java.io.Serialized 接口。

Try this (using plain reflection):

Class<?>[] interfaces = proxyInstance.getClass().getInterfaces();

For the following code:

Object proxyInstance = Proxy.newProxyInstance(
    getClass().getClassLoader(), 
    new Class<?>[] {Serializable.class},
    new InvocationHandler() /**/);

It correctly return java.io.Serializable interface.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文