第一章 问候Spring4他大爷
核心jar包:
http://pan.baidu.com/s/1eQF0Y9W
配置文件:
http://pan.baidu.com/s/1ntkeDuh
Service层
Test.java
package service;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import test.HelloWorld;public class Test{ public static void main(String[] args) { ApplicationContext ac = new ClassPathXmlApplicationContext("beans.xml" ); HelloWorld helloWorld = (HelloWorld) ac.getBean("helloWorld" ); helloWorld.say(); }}
test层
HelloWorld.java
package test;public class HelloWorld{ public void say() { System. out.println("Spring4大爷你好!" ); }}
配置文件:
beans.xml