java web之面向接口编程

本文介绍如何通过工厂模式结合接口实现代码的解耦合,提高代码的可移植性和扩展性。具体展示了通过配置Servlet初始化参数来选择不同的数据访问层实现方式,如JDBC或XML,并详细说明了实现过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.在类中调用接口的方法,而不关心具体的实现,有利于代码的解耦,有更好地可移植性和可扩展性!!!!!

.

//2.具体的方法流程
1配置servlet---2.构建Servlet的init()方法来(获取属性值---获取type---赋予工厂类type)
//配置 
<servlet>    
<servlet-name>InitServlet</servlet-name>    
<servlet-class>com.mvcapp.servlet.InitServlet</servlet-class>  
<load-on-startup>1</load-on-startup> 
 </servlet>
//init()方法
public void init() throws ServletException {
CustomerDAOFactory.getInstance().setType("jdbc");
//读取类路径下的 switch.properties 文件
InputStream in = getServletContext().getResourceAsStream("/WEB-INF/classes/switch.properties");
Properties properties = new Properties();
try {properties.load(in);
//获取 switch.properties 的 type 属性值
String type = properties.getProperty("type");
//赋给了 CustomerDAOFactory 的 type 属性值
CustomerDAOFactory.getInstance().setType(type);
} catch (Exception e) {e.printStackTrace();}}

工厂方法

public class CustomerDAOFactory {
	
	private Map<String, CustomerDAO> daos = new HashMap<String, CustomerDAO>();
	
	
	private static CustomerDAOFactory instance = new CustomerDAOFactory();
	
	public static CustomerDAOFactory getInstance() {
		return instance;
	}
	
	private String type = null;
	
	public void setType(String type) {
		this.type = type;
	}
	
	private CustomerDAOFactory(){
		daos.put("jdbc", new CustomerDAOJdbcImpl());
		daos.put("xml", new CustomerDAOXMLImpl());
	}
	
	public CustomerDAO getCustomerDAO(){
		return daos.get(type);
	}
	
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值