1. Does a dynamic proxy instance use a subclass of the target class? The java document says that the proxy instance implements a "list of interfaces", says nothing about the subclass, but through debugging I saw that the proxy instance inherits the properties of the target class. What does a list of interfaces mean? Is it possible to exclude interfaces implemented by the target class?
2. Can I refer to specific class methods on a proxy instance?
3. I think that a dynamic proxy is a proxy invocation of interface methods and not a proxy of the target class, is it true (I am deeply infected with the idea of ββa hibernate proxy object)?
source share