配置文件factorys.properites的使用

2018-06-02 09:47 更新

接口與實(shí)現(xiàn)類的關(guān)聯(lián)關(guān)系,也可以配置在配置文件factorys.properties文件中,在該配置文件中配置的實(shí)現(xiàn)類,其version值為10.

在src目錄下面創(chuàng)建factorys.properties文件,然后寫一個(gè)實(shí)現(xiàn)類并配置進(jìn)去,如下

public class TestProdectDaoImpl implements ProductDao
{
	public List<Product> findAll() throws Exception {
		System.out.println("TestProdectDaoImpl findAll");
		return null;
	}
	public void save(Product product) throws Exception {
		System.out.println("TestProdectDaoImpl save");
		
	}
}

注意實(shí)現(xiàn)類無(wú)需添加任何注解

factorys.properties中配置如下

demo.dao.ProductDao=demo.dao.impl.TestProdectDaoImpl

再次調(diào)用測(cè)試,發(fā)現(xiàn)使用的是配置文件中的實(shí)現(xiàn)類了



以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)