Spring源码深度解析——笔记
Posted lakeslove
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring源码深度解析——笔记相关的知识,希望对你有一定的参考价值。
1.spring容器的基本用法
xml配置
<bean id="myTestBean" class="bean.MyTestBean"/>
调用
BeanFactory bf = new XmlBeanFactory(new ClassPathResource("beanFactoryTest.xml")); MytestBean bean = (MyTestBean) bf.getBean("myTestBean");
以上是关于Spring源码深度解析——笔记的主要内容,如果未能解决你的问题,请参考以下文章