//@ContextConfiguration(locations = { "classpath*:/spring1.xml", "classpath*:/spring2.xml" })
public class TimerTest {
 
 
@Test
public void testTimeRun(){
 
String[] str = new String[]{"service.context.xml","schedule.context.xml","actions.context.xml"};
ApplicationContext con = new ClassPathXmlApplicationContext(str);
SystemDao systemDao = (SystemDao) con.getBean("systemDao");
System.out.println(systemDao);
 
}
 
}