摘要:
只需实现org.springframework.beans.factory.FactoryBean 接口public interface FactoryBean{//获取实例Object getObject() throws Exception;//获取实现相对的类型Class getObjectType();//表明获取的实例在容器中是否是singleton形式boolean isSingleton();}然后在spring 进行bean定义<bean id="objectId" class="...FactoryBean"/>需要注意的是 阅读全文