JavaServiceLocatorPattern(伺服器定位模式)
服務定位器模式(Service Locator Pattern)用在我們想使用 JNDI 查詢定位各種服務的時候。考慮到為某個服務查詢 JNDI 的代價很高,服務定位器模式充分利用了快取技術。在首次請求某個服務時,服務定位器在 JNDI 中查詢服務,並快取該服務物件。當再次請求相同的服務時,服務定位器會在它的快取中查詢,這樣可以在很大程度上提高應用程式的效能。以下是這種設計模式的實體。
- 服務(Service) – 實際處理請求的服務。對這種服務的引用可以在 JNDI 伺服器中查詢到。
Context / 初始的 Context – JNDI Context 帶有對要查詢的服務的引用。 - 服務定位器(Service Locator) – 服務定位器是通過 JNDI 查詢和快取服務來獲取服務的單點接觸。
- 快取(Cache) – 快取儲存服務的引用,以便複用它們。
- 客戶端(Client) – Client 是通過 ServiceLocator 呼叫服務的物件。
- 建立服務介面 Service。
/**
* 1. 建立服務介面 Service。
* @author mazaiting
*/
public interface Service {
public String getName();
public void execute();
}
- 建立實體服務。
/**
* 2. 建立實體服務。
* @author mazaiting
*/
public class Service1 implements Service{
public String getName() {
return "Service1";
}
public void execute() {
System.out.println("Executing Service1");
}
}
/**
* 2. 建立實體服務。
* @author mazaiting
*/
public class Service2 implements Service{
public String getName() {
return "Service2";
}
public void execute() {
System.out.println("Executing Service2");
}
}
- 為 JNDI 查詢建立 InitialContext。
/**
* 3. 為 JNDI 查詢建立 InitialContext。
* @author mazaiting
*/
public class InitialContext {
public Object lookup(String jndiName){
if (jndiName.equalsIgnoreCase("SERVICE1")){
System.out.println("Looking up and creating a new Service1 object");
return new Service1();
} else if (jndiName.equalsIgnoreCase("SERVICE2")) {
System.out.println("Looking up and creating a new Service2 object");
return new Service2();
}
return null;
}
}
- 建立快取 Cache。
/**
* 4. 建立快取 Cache。
* @author mazaiting
*/
public class Cache {
private List<Service> services;
public Cache(){
services = new ArrayList<Service>();
}
public Service getService(String serviceName){
for (Service service : services) {
if (service.getName().equalsIgnoreCase(serviceName)) {
System.out.println("Returning cached "+service+" object");
return service;
}
}
return null;
}
public void addService(Service newService){
boolean exists = false;
for (Service service : services) {
if (service.getName().equalsIgnoreCase(newService.getName())){
exists = true;
}
}
if (!exists) {
services.add(newService);
}
}
}
- 建立服務定位器。
/**
* 5. 建立服務定位器。
* @author mazaiting
*/
public class ServiceLocator {
private static Cache cache;
static {
cache = new Cache();
}
public static Service getService(String jndiName){
Service service = cache.getService(jndiName);
if (service != null){
return service;
}
InitialContext context = new InitialContext();
Service service1 = (Service) context.lookup(jndiName);
cache.addService(service1);
return service1;
}
}
- 使用 ServiceLocator 來演示服務定位器設計模式。
/**
* 6. 使用 ServiceLocator 來演示服務定位器設計模式。
* @author mazaiting
*/
public class Client {
public static void main(String[] args) {
Service service = ServiceLocator.getService("Service1");
service.execute();
service = ServiceLocator.getService("Service2");
service.execute();
service = ServiceLocator.getService("Service1");
service.execute();
service = ServiceLocator.getService("Service2");
service.execute();
}
}
- 列印結果
Looking up and creating a new Service1 object
Executing Service1
Looking up and creating a new Service2 object
Executing Service2
Returning cached com.mazaiting.serloc.Service1@15db9742 object
Executing Service1
Returning cached com.mazaiting.serloc.Service2@6d06d69c object
Executing Service2
相關文章
- J2EE模式-服務定位器模式模式
- 極簡架構模式-服務定位器模式架構模式
- 巧用機器學習定位雲伺服器故障機器學習伺服器
- 專用伺服器模式(MTS)和共享伺服器模式伺服器模式
- 共享伺服器模式(shared server)和專用伺服器模式(dedicated server)伺服器模式Server
- 共享辦公,定位辦公空間模式新標杆模式
- ORACLE專用伺服器模式(DEDICATED)與共享伺服器模式(SHARE)的區別Oracle伺服器模式
- 【Shared Server Mode】“專有伺服器模式”調整為“共享伺服器模式”Server伺服器模式
- MySQL伺服器的SQL模式MySql伺服器模式
- 部署:無伺服器部署模式伺服器模式
- 網路io模式(伺服器請求應答模式)模式伺服器
- Ansible 學習筆記 - 定位主機和組的模式筆記模式
- 如何檢視資料庫是專有伺服器模式還是共享伺服器模式資料庫伺服器模式
- iOS 地圖定位 定位iOS地圖
- 【Mysql學習】SQL伺服器模式MySql伺服器模式
- 【Mysql 學習】SQL伺服器模式MySql伺服器模式
- 定位
- 無伺服器模式 -Davide Taibi伺服器模式IDEAI
- Oracle共享伺服器的連線模式Oracle伺服器模式
- 7、共享模式的檔案伺服器模式伺服器
- 劫持GPS定位&劫持WIFI定位WiFi
- 通過伺服器日誌溯源定位web應用攻擊路徑伺服器Web
- 典型伺服器模式原理分析與實踐伺服器模式
- JavaScript 滾動條定位指定位置JavaScript
- CSS定位CSS
- 元素定位
- CSS——定位CSS
- Position定位
- iOS 定位iOS
- TBM定位
- 重定位
- 1-相對定位、絕對定位和固定定位的區別
- 元素的相對定位與絕對定位
- 爬蟲之xpath精準定位--位置定位爬蟲
- Linux(伺服器程式設計):15---兩種高效的事件處理模式(reactor模式、proactor模式)Linux伺服器程式設計事件模式React
- Python全棧Web(定位佈局、定位方式)Python全棧Web
- CSS中的絕對定位與相對定位CSS
- css之定位CSS