Uses of Class
org.springframework.aop.framework.ProxyFactory
Packages that use ProxyFactory Package Description org.springframework.aop.framework Package containing Spring's basic AOP infrastructure, compliant with the AOP Alliance interfaces.org.springframework.aop.framework.autoproxy Bean post-processors for use in ApplicationContexts to simplify AOP usage by automatically creating AOP proxies without the need to use a ProxyFactoryBean.org.springframework.transaction.interceptor AOP-based solution for declarative transaction demarcation.Uses of ProxyFactory in org.springframework.aop.framework
Methods in org.springframework.aop.framework that return ProxyFactory Modifier and Type Method Description protected ProxyFactoryAbstractAdvisingBeanPostProcessor. prepareProxyFactory(Object bean, String beanName)Prepare aProxyFactoryfor the given bean.Methods in org.springframework.aop.framework with parameters of type ProxyFactory Modifier and Type Method Description protected voidAbstractAdvisingBeanPostProcessor. customizeProxyFactory(ProxyFactory proxyFactory)Subclasses may choose to implement this: for example, to change the interfaces exposed.protected voidProxyProcessorSupport. evaluateProxyInterfaces(Class<?> beanClass, ProxyFactory proxyFactory)Check the interfaces on the given bean class and apply them to theProxyFactory, if appropriate.protected voidAbstractSingletonProxyFactoryBean. postProcessProxyFactory(ProxyFactory proxyFactory)A hook for subclasses to post-process theProxyFactorybefore creating the proxy instance with it.Uses of ProxyFactory in org.springframework.aop.framework.autoproxy
Methods in org.springframework.aop.framework.autoproxy that return ProxyFactory Modifier and Type Method Description protected ProxyFactoryAbstractBeanFactoryAwareAdvisingPostProcessor. prepareProxyFactory(Object bean, String beanName)Methods in org.springframework.aop.framework.autoproxy with parameters of type ProxyFactory Modifier and Type Method Description protected voidAbstractAutoProxyCreator. customizeProxyFactory(ProxyFactory proxyFactory)Subclasses may choose to implement this: for example, to change the interfaces exposed.Uses of ProxyFactory in org.springframework.transaction.interceptor
Methods in org.springframework.transaction.interceptor with parameters of type ProxyFactory Modifier and Type Method Description protected voidTransactionProxyFactoryBean. postProcessProxyFactory(ProxyFactory proxyFactory)As of 4.2, this method addsTransactionalProxyto the set of proxy interfaces in order to avoid re-processing of transaction metadata.