1 16 17 package org.springframework.aop.framework.autoproxy; 18 19 import org.springframework.beans.TestBean; 20 import org.springframework.beans.factory.FactoryBean; 21 22 26 public class CreatesTestBean implements FactoryBean { 27 28 31 public Object getObject() throws Exception { 32 return new TestBean(); 33 } 34 35 38 public Class getObjectType() { 39 return TestBean.class; 40 } 41 42 45 public boolean isSingleton() { 46 return true; 47 } 48 49 } 50 | Popular Tags |