摘要: 只需实现org.springframework.beans.factory.FactoryBean 接口public interface FactoryBean{//获取实例Object getObject() throws Exception;//获取实现相对的类型Class getObjectType();//表明获取的实例在容器中是否是singleton形式boolean isSingleton();}然后在spring 进行bean定义<bean id="objectId" class="...FactoryBean"/>需要注意的是 阅读全文
posted @ 2011-08-22 17:23 现役程序员 阅读(374) 评论(0) 推荐(0) 编辑