1、导包
2、编写Helloworld程序
1 package cn.test.helloWorld;2 3 public class HelloWorld {4 public void sayHello(){5 System.err.println("1234567890");6 }7 }
3、在src目录下写配置文件applicationContext.xml
这里也可以使用别名来配置,在bean下面添加:<alias name="helloWorld" alias="bm"/>,在后面的调用中就可以使用别名来调用了。
4、编写启动客户端
1 @Test 2 public void doSomething(){ 3 /* 4 * 1、启动spring容器 5 * 2、从spring容器中把helloWorld拿出来 6 * 3、对象.方法 7 */ 8 ApplicationContext applicationContext=new ClassPathXmlApplicationContext("/applicationContext.xml"); 9 HelloWorld helloWorld=(HelloWorld) applicationContext.getBean("helloWorld");10 helloWorld.sayHello();11 }
使用别名调用:效果相同
ApplicationContext applicationContext=new ClassPathXmlApplicationContext("/applicationContext.xml");
HelloWorld helloWorld=(HelloWorld) applicationContext.getBean("bm");helloWorld.sayHello();