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() {