Package org.beangle.spring.testbean

Examples of org.beangle.spring.testbean.TestService


    }
    System.out.println("no autowire using " + watch.getTime());
  }

  private void testFactoryBean(ApplicationContext factory) {
    TestService testService = factory.getBean("testService", TestService.class);
    assertNotNull(testService);
    assertNotNull(testService.getTestDao());
  }
View Full Code Here

TOP

Related Classes of org.beangle.spring.testbean.TestService

Copyright © 2018 www.massapicom. 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.