//管理bean对象的java类
public class ClassPathXMLApplicationContext {
// 这个集合用来存储获取到的XML配置文件里面的bean信息
private List<BeanDefinition> beanDefines = new ArrayList<BeanDefinition>();
// 这个集合用来存储根据class属性实例化的bean实例
private Map<String, Object> singleton = new HashMap<String, Object>();
public ClassPathXMLApplicationContext(String fileName) {
this.readXML(fileName);
this.instanceBeans();
}
//实例化所有bean对象
private void instanceBeans() {
// 通过循环实例化所有的bean对象
for (BeanDefinition beandefine : beanDefines) {
try {
singleton.put(beandefine.getId(),
Class.forName(beandefine.getClazz()).newInstance());
} catch (Exception e) {
e.printStackTrace();
}
}
}
//读取XML,把获取到的信息先封装到javabean再存入集合里面
private void readXML(String fileName) {
SAXReader saxReader = new SAXReader();
Document document = null;
try {
URL xmlPath = this.getClass().getClassLoader()
.getResource(fileName);
Map<String, String> nsMap = new HashMap<String, String>();
nsMap.put("ns", "http://www.springframework.org/schema/beans"); //加入命名空间
XPath xsub = document.createXPath("//ns:beans/ns:bean"); // 创建beans/bean查询路径
xsub.setNamespaceURIs(nsMap); //设置命名空间
List<Element> beans = xsub.selectNodes(document); // 获取文档下所有bean节点
for (Element element : beans) {
String id = element.attributeValue("id");
String clazz = element.attributeValue("class");
BeanDefinition bean = new BeanDefinition(id, clazz); // 把获取到的数据封装到JAVABEAN里面
beanDefines.add(bean); // 然后把javabean加入到集合里面取
}
} catch (Exception e) {
e.printStackTrace();
}
}
//获取bean实例的方法
private Object getBeans(String beanName) {
return singleton.get(beanName);
}
}
Spring管理bean对象的原理
最新推荐文章于 2022-11-08 11:32:48 发布