设计模式 - MVC 模式
设计模式 - 组合实体模式

设计模式 - 业务代表模式

violet posted @ 5 年前 in 笔记 with tags Design Pattern Golang , 383 阅读

业务代表模式(Business Delegate Pattern)用于对表示层和业务层解耦。它基本上是用来减少通信或对表示层代码中的业务层代码的远程查询功能。在业务层中我们有以下实体。

  • 客户端(Client) - 表示层代码可以是 JSP、servlet 或 UI java 代码。
  • 业务代表(Business Delegate) - 一个为客户端实体提供的入口类,它提供了对业务服务方法的访问。
  • 查询服务(LookUp Service) - 查找服务对象负责获取相关的业务实现,并提供业务对象对业务代表对象的访问。
  • 业务服务(Business Service) - 业务服务接口。实现了该业务服务的实体类,提供了实际的业务实现逻辑。

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package main
 
import "fmt"
 
type BusinessService interface {
    DoProcessing()
}
 
type EJBService struct{}
 
func (e *EJBService) DoProcessing() {
    fmt.Println("Processing task by invoking EJB service")
}
 
type JMSService struct{}
 
func (j *JMSService) DoProcessing() {
    fmt.Println("Processing task by invoking JMS service")
}
 
type BusinessLookUp struct{}
 
func (b *BusinessLookUp) GetBusniessService(serviceType string) BusinessService {
    if serviceType == "EJB" {
        return &EJBService{}
    }
    return &JMSService{}
}
 
type BusinessDelegate struct {
    LookUpService   *BusinessLookUp
    BusinessService BusinessService
    ServiceType     string
}
 
func (b *BusinessDelegate) SetServiceType(serviceType string) {
    b.ServiceType = serviceType
}
 
func (b *BusinessDelegate) DoProcessing() {
    service := b.LookUpService.GetBusniessService(b.ServiceType)
    service.DoProcessing()
}
 
type Client struct {
    Service BusinessService
}
 
func NewClient(service BusinessService) *Client {
    return &Client{
        Service: service,
    }
}
 
func (c *Client) DoTask() {
    c.Service.DoProcessing()
}
 
func main() {
    delegate := &BusinessDelegate{LookUpService: &BusinessLookUp{}}
    delegate.SetServiceType("EJB")
 
    client := NewClient(delegate)
    client.DoTask()
 
    delegate.SetServiceType("JMS")
    client.DoTask()
}
charlly 说:
2 年前

The Business Delegate pattern is a common design pattern that is used to abstract away the details of communicating with a back-end service. This pattern is often used in conjunction with the Data Access Object pattern. The Business Delegate pattern real estate property Riverside provides a way for client code to be decoupled from the details of the back-end service.


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter