小小的spring2.0例子

小小的spring2.0例子
随手写的,不知道发上来有没有人看。 平台myEclipse6.0M1

/src/applicationContext.xml

<? xml version="1.0" encoding="UTF-8" ?>
< beans
    
xmlns ="http://www.springframework.org/schema/beans"
    xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation
="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd" >
    
< bean  id ="hello"  class ="com.lusm.spring.test.Hello"  abstract ="false"
        lazy-init
="default"  autowire ="default"  dependency-check ="default" >
        
< property  name ="str" >
            
< value > 你好啊!!! </ value >
        
</ property >
    
</ bean >
</ beans >

/src/com/lusm/spring/test/HelloTest.java

package  com.lusm.spring.test;

import  org.springframework.context.ApplicationContext;
import  org.springframework.context.support.FileSystemXmlApplicationContext;

public   class  HelloTest  {

    
public static void main(String[] args) {
        ApplicationContext ac 
= new FileSystemXmlApplicationContext(
                
"/src/applicationContext.xml");
        Hello h 
= (Hello) ac.getBean("hello");
        h.sayHello();
    }


}

/src/com/lusm/spring/test/Hello.java

package  com.lusm.spring.test;

public   class  Hello  {
    
private String str;

    
public String getStr() {
        
return str;
    }


    
public void setStr(String str) {
        
this.str = str;
    }


    
public void sayHello() {
        System.out.println(str);
    }


}


运行结果

log4j:WARN No appenders could be found for logger (org.springframework.context.support.FileSystemXmlApplicationContext).
log4j:WARN Please initialize the log4j system properly.

你好啊!!!

一个简单的spring就这么小!


地震让大伙知道:居安思危,才是生存之道。

你可能感兴趣的:(小小的spring2.0例子)