本文介紹了存儲(chǔ)庫和服務(wù)層之間的區(qū)別的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我查看了一些相關(guān)問題,但我仍然看不出存儲(chǔ)庫和服務(wù)層之間有太大區(qū)別。所以給出這個(gè)例子,我想應(yīng)該是這樣的,如果不是,請(qǐng)告訴我為什么?
public interface ProductRepository extends CrudRepository<Product, Long>{
public List<Product> findByName(String name);
public List<Product> findByPrice(Double price);
}
public interface ProductService {
public List<Product> findAll();
public Product findById(Long id);
public Product save(Product product);
public void delete(Product product);
public List<Product> findByName(String name);
public List<Product> findByPrice(Double price);
}
并且ProductService的實(shí)現(xiàn)將使用ProductRepository來實(shí)現(xiàn)這些方法。我從http://docs.spring.io/spring-data/jpa/docs/1.3.0.RELEASE/reference/html/jpa.repositories.html中了解到,對(duì)存儲(chǔ)庫中方法的查詢是自動(dòng)生成的。在我的示例中,這些方法在存儲(chǔ)庫和服務(wù)中重復(fù),因此請(qǐng)解釋需要更改的內(nèi)容/原因?
推薦答案
您的所有業(yè)務(wù)邏輯都應(yīng)該在服務(wù)層中。
對(duì)數(shù)據(jù)庫(任何存儲(chǔ))的任何訪問都應(yīng)訪問存儲(chǔ)庫層。
讓我們舉個(gè)例子。你必須保存一個(gè)實(shí)體(人)。但是在保存此人之前,您需要確保此人的名字不存在。
所以驗(yàn)證部分應(yīng)該轉(zhuǎn)到業(yè)務(wù)層。
在服務(wù)層
PersonRepository repository;
public Person save(Person p){
Person p = findByName(p.getName();
if (p != null){
return some customException();
}
return repository.save(p);
}
public Person findByName(String name){
return repository.findByName(name);
}
在您的存儲(chǔ)庫層中,只需專注于數(shù)據(jù)庫操作。
您可以在Repository Layer It本身中完成此操作。假設(shè)您已經(jīng)在存儲(chǔ)庫中實(shí)現(xiàn)了這一點(diǎn),那么您的保存方法總是在保存之前進(jìn)行檢查(有時(shí)您可能不需要這樣做)。
這篇關(guān)于存儲(chǔ)庫和服務(wù)層之間的區(qū)別的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,