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.newProxyI
java.lang.reflect.Proxy.newProxyI
You can use the Proxy.getInvocationHandler(proxy) method to obtain the original InvocationHandler.