业务代表模式(Business Delegate Pattern)用于对表示层和业务层解耦。它基本上是用来减少通信或对表示层代码中的业务层代码的远程查询功能。在业务层中我们有以下实体。
- 客户端(Client) - 表示层代码可以是 JSP、servlet 或 UI java 代码。
- 业务代表(Business Delegate) - 一个为客户端实体提供的入口类,它提供了对业务服务方法的访问。
- 查询服务(LookUp Service) - 查找服务对象负责获取相关的业务实现,并提供业务对象对业务代表对象的访问。
- 业务服务(Business Service) - 业务服务接口。实现了该业务服务的实体类,提供了实际的业务实现逻辑。
- 创建 BusinessService 接口。
/**
* 1. 创建 BusinessService 接口。
* @author mazaiting
*/
public interface BusinessService {
void doProcessing();
}
- 创建实体服务类
/**
* 2. 创建实体服务类。
* @author mazaiting
*/
public class EJBService implements BusinessService{
public void doProcessing() {
System.out.println("Processing task by invoking EJB Service");
}
}
/**
* 2. 创建实体服务类。
* @author mazaiting
*/
public class JMSService implements BusinessService{
public void doProcessing() {
System.out.println("Processing task by invoking JMS Service");
}
}
- 创建业务查询服务。
/**
* 3. 创建业务查询服务。
* @author mazaiting
*/
public class BusinessLookUp {
public BusinessService getBusinessService(String serviceType){
if (serviceType.equalsIgnoreCase("EJB")){
return new EJBService();
} else {
return new JMSService();
}
}
}
- 创建业务代表。
/**
* 4. 创建业务代表。
* @author mazaiting
*/
public class BusinessDelegate {
private BusinessLookUp lookupService = new BusinessLookUp();
private BusinessService businessService;
private String serviceType;
public void setServiceType(String serviceType) {
this.serviceType = serviceType;
}
public void doTask(){
businessService = lookupService.getBusinessService(serviceType);
businessService.doProcessing();
}
}
- 创建客户端。
/**
* 5. 创建客户端。
* @author mazaiting
*/
public class Client {
BusinessDelegate businessDelegate;
public Client(BusinessDelegate businessDelegate){
this.businessDelegate = businessDelegate;
}
public void doTask(){
businessDelegate.doTask();
}
}
- 使用 BusinessDelegate 和 Client 类来演示业务代表模式。
/**
* 6. 使用 BusinessDelegate 和 Client 类来演示业务代表模式。
* @author mazaiting
*/
public class Test {
public static void main(String[] args) {
BusinessDelegate businessDelegate = new BusinessDelegate();
businessDelegate.setServiceType("EJB");
Client client = new Client(businessDelegate);
client.doTask();
businessDelegate.setServiceType("JMS");
client.doTask();
}
}
7.打印结果
Processing task by invoking EJB Service
Processing task by invoking JMS Service