Package org.springframework.issues.service

Examples of org.springframework.issues.service.TestService


  public void javaCentric() {

    GenericApplicationContext appContext = new AnnotationConfigApplicationContext(
        org.springframework.issues.config.java_centric.AppConfig.class);

    TestService service = appContext.getBean(TestService.class);
    assertThat(service.queryDummyValue(), equalTo(12345));
    appContext.close();
  }
View Full Code Here


  public void xmlCentric() {

    GenericApplicationContext appContext = new GenericXmlApplicationContext(
        "classpath:org/springframework/issues/config/xml_centric/app-config.xml");

    TestService service = appContext.getBean(TestService.class);
    assertThat(service.queryDummyValue(), equalTo(12345));
    appContext.close();
  }
View Full Code Here

TOP

Related Classes of org.springframework.issues.service.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.