Package org.springframework.tests.sample.beans.factory

Examples of org.springframework.tests.sample.beans.factory.DummyFactory.wasInitialized()


   */
  public void testFactoryIsInitialized() throws Exception {
    TestBean tb = (TestBean) getBeanFactory().getBean("singletonFactory");
    assertNotNull(tb);
    DummyFactory factory = (DummyFactory) getBeanFactory().getBean("&singletonFactory");
    assertTrue("Factory was initialized because it implemented InitializingBean", factory.wasInitialized());
  }

  /**
   * It should be illegal to dereference a normal bean
   * as a factory
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.