bean是spring中最核心的东西,我们看看bean的定义。
public class MyTestBean{
private String testStr="testStr";
public String getTestStr(){
return testStr;
}
public void setTestStr(String testStr){
this.testStr = testStr;
}
}
然后我们在Spring的配置文件中加上下面这行
<bean id="myTestBean" class = "bean.MyTestBean"/>
下面就可以进行测试了,我们在测试类中加入一个方法:
@Test
public void testSimpleLoad(){
BeanFactory bf = new XmlBeanFactory(new ClassPathResource("beanFactoryTest.xml"));
MyTestBean bean = (MyTestBean)bf.getBean("myTestBean");
println(bean.getTestStr());
}
运行便可以得到我们需要的结果,其实BeanFactory作为容器对于Spring的使用并不多见,因为企业级应用项目中大多会使用的是ApplicationContext(后面我们会讲两者的区别,这里只是测试)。
道理源码里面是如何做的呢?在后续章节里面我们就要开始分析源码了。
关于spring的源码我们是将其作为一个工程导入到eclipse或myeclipse中进行分析的。
如何将spring源码作为工程导入到eclipse中网上有许多下载的教程,如果大家有疑问可以留言我,关于如何将spring源码编译成web工程这方面的问题,我会解答。
下一章节,我们会对spring-beans进行分析。