89101112131415
public class Consumer { public static void main(String[] args) { ApplicationContext ctx = new ClassPathXmlApplicationContext("consumer.xml"); ConsumerBean consumer = (ConsumerBean) ctx.getBean("consumer"); System.out.println("Started"); }