Package org.springframework.aop.framework

Examples of org.springframework.aop.framework.ProxyFactoryBean.copyFrom()


                        // 如果是单例,对应的代理bean对象为同一个
                        ProxyFactoryBean proxyFactoryBean = new ProxyFactoryBean();
                        proxyFactoryBean.setBeanFactory(beanFactory);
                        proxyFactoryBean.setBeanClassLoader(proxyClassLoader);
                        proxyFactoryBean.setInterceptorNames(interceptorNames);
                        proxyFactoryBean.copyFrom(this); // 拷贝对应的一些Proxy config
                        proxyFactoryBean.setTarget(bean);
                        return proxyFactoryBean.getObject();
                    }
                }
            }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.