1

public class BeanFactory{
	//定义一个Properties对象
	private static Propertie props;

	//使用静态代码块为Properties对象赋值
	static {
		try{
			//实例化对象
			props = new Properties();
			//获取properties文件的流对象
			InputStream in = BeanFactory.class.getClassLoader()
			.getResourceAsStream("bean.properties");
			props.load(in);
		}catch(Exception e){
			throw new ExceptionInInitializerError("初始化失败!");
		}
	}
	public Object getBean(String beanName){
		Object bean;
		try{
			String beanPath = props.getProperty(beanName);
			bean = Class.forName(beanPath).newInstance();
			//每次都会调用默认构造函数创建对象
		}catch(Exception e){
			e.printStackTrace();
		}
		return bean;
	}
}
public class BeanFactory{
	//定义一个Properties对象
	private static Propertie props;
	//定义一个Map,用于存放我们要创建的对象.我们把它称之为容器
	private static Map<String,Object> beans;

	//使用静态代码块为Properties对象赋值
	static {
		try{
			//实例化对象
			props = new Properties();
			//获取properties文件的流对象
			InputStream in = BeanFactory.class.getClassLoader()
			.getResourceAsStream("bean.properties");
			props.load(in);
			//实例化容器
			beans = new HashMap<String,Object>();
			//取出所有的key
			Enumeration keys = props.keys();
			//遍历枚举
			while(keys.hasMoreElements()){
				//取出每个key
				String key = keys.nextElements.toString();
				//根据key获取value
				String beanPath = props.getProperty(key);
				//反射创建对象
				Object value = Class.forName(beanPath).newInstance();
				//key value存入容器
				beans.put(key,value);
			}
		}catch(Exception e){
			throw new ExceptionInInitializerError("初始化失败!");
		}
	}
	public static Object(String beanName){
		return beans.get(beanName);
	}
}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值