Class ProxyFactoryBean

  • All Implemented Interfaces:
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.FactoryBean<Object>, org.springframework.beans.factory.InitializingBean

    public class ProxyFactoryBean
    extends org.springframework.beans.factory.config.AbstractFactoryBean<Object>
    A Spring FactoryBean for instantiating a Proxy instance with a specified target interface type and a InvocationHandler.
    Author:
    bdferris
    • Constructor Detail

      • ProxyFactoryBean

        public ProxyFactoryBean()
    • Method Detail

      • setProxyInterface

        public void setProxyInterface​(Class<?> proxyInterface)
      • setInvocationHandler

        public void setInvocationHandler​(InvocationHandler invocationHandler)
      • getObjectType

        public Class<?> getObjectType()
        Specified by:
        getObjectType in interface org.springframework.beans.factory.FactoryBean<Object>
        Specified by:
        getObjectType in class org.springframework.beans.factory.config.AbstractFactoryBean<Object>
      • createInstance

        protected Object createInstance()
                                 throws Exception
        Specified by:
        createInstance in class org.springframework.beans.factory.config.AbstractFactoryBean<Object>
        Throws:
        Exception