第一章 spring简介
spring ioc 容器:
1. bean factory
2.application context
实例化application context:
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
HelloWorld helloWorld = (HelloWorld) context.getBean("helloWorld");
helloWorld.hello();
第八章 spring @mvc