第一个Spring案例
1、 导入jar文件
spring-framework-2.5.6\dist下的spring.jar 与spring-framework-2.5.6\lib\jakarta-commons下的commons-logging.jar
2、 重写配置文件applicationContext.xml
3、 调试main方法
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
HelloWordDao hello = (HelloWordDao) ac.getBean("hello");
hello.say();
}