Package org.springframework.tests.sample.beans

Examples of org.springframework.tests.sample.beans.MustBeInitialized.businessMethod()


   */
  public void testInitializingBeanCallback() {
    MustBeInitialized mbi = (MustBeInitialized) getBeanFactory().getBean("mustBeInitialized");
    // The dummy business method will throw an exception if the
    // afterPropertiesSet() callback wasn't invoked
    mbi.businessMethod();
  }

  /**
   * Test that InitializingBean/BeanFactoryAware/DisposableBean objects receive the
   * afterPropertiesSet() callback before BeanFactoryAware callbacks
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.