Spring_加载beans.xml简单模拟


使用spring框架时,都会在xml中配置一些bean。这样spring就会把我们配置的组件进行管理,让我们用起来很方便,但是一直想知道它到底是怎么一回事。上网查找资料,用jdom模拟解析xml。


beans.xml

<beans>
	<bean id="u" class="com.code.dao.impl.UserDAOImpl" />
	<bean id="userService" class="com.code.service.UserService" >
		<property name="userDAO" bean="u"/>
	</bean>
	
</beans>

面向接口编程:

BeanFactory.java

package com.code.spring;

public interface BeanFactory {
	public Object getBean(String id);
}

ClassPathXmlApplicationContext.java

package com.code.spring;


import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.List;


import org.jdom.Document;
import org.jdom.Element;
import org.jdom.input.SAXBuilder;


public class ClassPathXmlApplicationContext implements BeanFactory{


<span style="white-space:pre">	</span>HashMap<String, Object> beans = new HashMap<String, Object>();
<span style="white-space:pre">	</span>
<span style="white-space:pre">	</span>public ClassPathXmlApplicationContext() throws Exception {
<span style="white-space:pre">		</span>
<span style="white-space:pre">		</span>SAXBuilder builder = new SAXBuilder();
<span style="white-space:pre">		</span>Document document = builder.build(this.getClass().getClassLoader().getResourceAsStream("beans.xml"));
<span style="white-space:pre">		</span>Element root = document.getRootElement();
<span style="white-space:pre">		</span>List<Element> list = root.getChildren("bean");


<span style="white-space:pre">		</span>for (int i = 0; i < list.size(); i++) {
<span style="white-space:pre">		</span>
<span style="white-space:pre">			</span>Element element = list.get(i);
<span style="white-space:pre">			</span>String id =  element.getAttributeValue("id");
<span style="white-space:pre">			</span>String clazz = element.getAttributeValue("class");
<span style="white-space:pre">			</span>Object o = Class.forName(clazz).newInstance();
<span style="white-space:pre">			</span>
<span style="white-space:pre">			</span>System.out.println("====id==========> " + id);
<span style="white-space:pre">			</span>System.out.println("====clazz=======> " + clazz);
<span style="white-space:pre">			</span>
<span style="white-space:pre">			</span>beans.put(id, o);
<span style="white-space:pre">			</span>
<span style="white-space:pre">			</span>for (Element propertyEl : (List<Element>)element.getChildren("property")) {
<span style="white-space:pre">				</span>
<span style="white-space:pre">				</span>String name = propertyEl.getAttributeValue("name");
<span style="white-space:pre">				</span>String bean = propertyEl.getAttributeValue("bean");
<span style="white-space:pre">				</span>
<span style="white-space:pre">				</span>System.out.println("====name=========> " + name);
<span style="white-space:pre">				</span>System.out.println("====bean=========> " + bean);
<span style="white-space:pre">				</span>
<span style="white-space:pre">				</span>Object objBean = beans.get(bean);
<span style="white-space:pre">				</span>
<span style="white-space:pre">				</span>String methodName = "set" + name.substring(0, 1).toUpperCase() + name.substring(1);
<span style="white-space:pre">				</span>System.out.println("====method name===> " + methodName);
<span style="white-space:pre">				</span>
<span style="white-space:pre">				</span>Method m = o.getClass().getMethod(methodName, objBean.getClass().getInterfaces()[0]);
<span style="white-space:pre">				</span>m.invoke(o, objBean);
<span style="white-space:pre">				</span>
<span style="white-space:pre">			</span>}
<span style="white-space:pre">		</span>}
<span style="white-space:pre">	</span>}


<span style="white-space:pre">	</span>public Object getBean(String id) {
<span style="white-space:pre">		</span>return beans.get(id);
<span style="white-space:pre">	</span>}
}

testParse.java

import com.code.dao.UserDAO;
import com.code.model.User;
import com.code.spring.BeanFactory;
import com.code.spring.ClassPathXmlApplicationContext;


public class TestPrase {

	public static void main(String[] args) throws Exception {
		
		User user = new User();
		user.setUsername("admin");
		user.setPassword("password");
		
		BeanFactory beanFactory = new ClassPathXmlApplicationContext();

		UserDAO userDAO =  (UserDAO) beanFactory.getBean("u");
		
		userDAO.save(user);
		
		System.out.println(userDAO);
	}
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值