Examples of queryDummyValue()


Examples of org.springframework.issues.service.TestService.queryDummyValue()

    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();
  }

  @Test
  public void xmlCentric() {
View Full Code Here

Examples of org.springframework.issues.service.TestService.queryDummyValue()

    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
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.