使用BeanFactory工厂对象优化J2EE的传统三层架构中的高耦合现象

BeanFactory类的设置

public class BeanFactory {
	
	
	/**
	 * 解析properties文件,放到map里面
	 */
	static Map mapping = new HashMap<>();
	//静态初始化,得到文件流
	static{
		InputStream is = BeanFactory.class.getResourceAsStream("../bean.properties");
		Properties properties = new Properties();
		//把流加载到propertie里面
		try {
			System.out.println(is);
			properties.load(is);
			//遍历properties
			Set> entrySet = properties.entrySet();
			for (Entry entry : entrySet) {
				mapping.put(entry.getKey().toString(), entry.getValue().toString());
			}
		} catch (IOException e) {
			// TODO 自动生成的 catch 块
			e.printStackTrace();
			System.out.println("解析配置文件异常");
		}
	}
	
	/**
	 * 
	 * @param 根据key去创建对象
	 * @return
	 * @SuppressWarnings注解主要用在取消一些编译器产生的警告对代码左侧行列的遮挡
	 */
	@SuppressWarnings("unchecked")
	public static  T getBean(String key){
		T t = null;	
		try {
			//根据key去mapping中取出完成限定名
			String path = mapping.get(key);
			Class forName = Class.forName(path);
			t =(T) forName.newInstance();
		} catch (Exception e) {
			// TODO 自动生成的 catch 块
			e.printStackTrace();
		}
		return t;
		
	}
}

将所业务层、web层所需要的类的对象实现与properties文件相对应

使用BeanFactory工厂对象优化J2EE的传统三层架构中的高耦合现象_第1张图片

这样的话新的功能需求在创建好相对应的类之后只需要把它们对应的实现在bean.properties文件中添加就行啦

你可能感兴趣的:(Java学习,java,j2ee)