新建Java项目,目录结构如下:
Spring配置文件applicationContext.xml代码如下:
Spring
类HelloSpring.java代码如下:
package cn.springdemo;
/**
-
第一个Spring,输出"Hello,Spring!"。
*/
public class HelloSpring {
// 定义who属性,该属性的值将通过Spring框架进行设置
private String who = null;/**
- 定义打印方法,输出一句完整的问候。
*/
public void print() {
System.out.println(“Hello,” + this.getWho() + “!”);
}
public String getWho() {
return who;
}
public void setWho(String who) {
this.who = who;
}
}
测试类HelloSpringTest.java代码如下:
package test; - 定义打印方法,输出一句完整的问候。
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import cn.springdemo.HelloSpring;
public class HelloSpringTest {
@Test
public void helloSpring() {
// 通过ClassPathXmlApplicationContext实例化Spring的上下文
ApplicationContext context = new ClassPathXmlApplicationContext(
"applicationContext.xml");
// 通过ApplicationContext的getBean()方法,根据id来获取bean的实例
HelloSpring helloSpring = (HelloSpring) context.getBean("helloSpring");
// 执行print()方法
helloSpring.print();
}
}