黄色网址大全免费-黄色网址你懂得-黄色网址你懂的-黄色网址有那些-免费超爽视频-免费大片黄国产在线观看

Java設計模式

Java服務定位器模式

服務定位器模式(Service Locator Pattern)用在我們想使用 JNDI 查詢定位各種服務的時候??紤]到為某個服務查找 JNDI 的代價很高,服務定位器模式充分利用了緩存技術。在首次請求某個服務時,服務定位器在 JNDI 中查找服務,并緩存該服務對象。當再次請求相同的服務時,服務定位器會在它的緩存中查找,這樣可以在很大程度上提高應用程序的性能。以下是這種設計模式的實體。

• 服務(Service) - 實際處理請求的服務。對這種服務的引用可以在 JNDI 服務器中查找到。

• Context / 初始的 Context - JNDI Context 帶有對要查找的服務的引用。

• 服務定位器(Service Locator) - 服務定位器是通過 JNDI 查找和緩存服務來獲取服務的單點接觸。

• 緩存(Cache) - 緩存存儲服務的引用,以便復用它們。

• 客戶端(Client) - Client 是通過 ServiceLocator 調用服務的對象。

實現

我們將創建 ServiceLocator、InitialContext、Cache、Service 作為表示實體的各種對象。Service1 和 Service2 表示實體服務。

ServiceLocatorPatternDemo,我們的演示類在這里是作為一個客戶端,將使用 ServiceLocator 來演示服務定位器設計模式。

步驟 1

創建服務接口 Service。

public interface Service {
   public String getName();
   public void execute();
}

步驟 2

創建實體服務。

public class Service1 implements Service {
   public void execute(){
      System.out.println("Executing Service1");
   }
 
   @Override
   public String getName() {
      return "Service1";
   }
}
public class Service2 implements Service {
   public void execute(){
      System.out.println("Executing Service2");
   }
 
   @Override
   public String getName() {
      return "Service2";
   }
}

步驟 3

為 JNDI 查詢創建 InitialContext。

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;      
   }
}

步驟 4

創建緩存 Cache。

import java.util.ArrayList;
import java.util.List;
 
public class Cache {
 
   private List services;
 
   public Cache(){
      services = new ArrayList();
   }
 
   public Service getService(String serviceName){
      for (Service service : services) {
         if(service.getName().equalsIgnoreCase(serviceName)){
            System.out.println("Returning cached  "+serviceName+" 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

創建服務定位器。

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;
   }
}

步驟 6

使用 ServiceLocator 來演示服務定位器設計模式。

public class ServiceLocatorPatternDemo {
   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();      
   }
}

步驟 7

執行程序,輸出結果:

Looking up and creating a new Service1 object
Executing Service1
Looking up and creating a new Service2 object
Executing Service2
Returning cached  Service1 object
Executing Service1
Returning cached  Service2 object
Executing Service2

 

全部教程
主站蜘蛛池模板: 国产午夜久久精品 | 999精品久久久中文字幕蜜桃 | 日日夜夜国产 | 最近中文字幕高清字幕 | 日日干狠狠干 | 欧美成人观看免费版 | 青草欧美| 国产在线一区二区三区四区 | 宅男色影院 | 欧美黄色高清视频 | 麻豆一区二区大豆行情 | 一级视频在线观看 | 欧美18~20性hd | 操欧美美女 | 公妇乱淫日本免费观看 | 亚洲社区在线观看 | 亚洲欧美日韩在线观看播放 | 日本高清一区二区三区不卡免费 | 最近更新在线中文字幕一页 | 免费国产一级特黄久久 | 黄色在线| 麻豆一区二区 | 国产精品久久久久精 | 国产偷倩视频 | 黄色国产大片 | 成年人视频在线观看免费 | 一个人www在线视频 一二三四在线视频社区8 | 日韩精品亚洲专区在线观看 | 国产精品成人影院 | 公妇乱淫日本免费观看 | 亚洲日本视频在线观看 | 天天综合色天天综合网 | 欧美一区二区三区视视频 | 一级片一级毛片 | 日韩不卡视频在线观看 | 日本免费一级视频 | 国产三级在线看 | 在线观看 a国v | 性片网址 | 青春草国产| 欧洲精品视频在线观看 |