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