package springIOC; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Main { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext("app.xml"); // Driver d = (Driver) context.getBean("d"); Tank t = (Tank) context.getBean("t"); } }