- Java EE 8 Design Patterns and Best Practices
- Rhuan Rocha Jo?o Purifica??o
- 244字
- 2021-07-23 16:54:56
The benefits of the Business Delegate pattern
According to the old J2EE architecture, the benefits of a Business Delegate included:
- Hiding the details of the underlying business service. In the case of remote services, using the Business Delegate makes naming and looking up services transparent to the presentation tier.
- Handling business-service exceptions. The Business Delegate can catch service exceptions that have a technical meaning and translate them into a more friendly exception, generating application exception level to the client. For instance, Business Delegate could translate the eventual remote exceptions generated by a business service into a specific application exception.
- A Business Delegate can transparently carry out a new retry of a failed service execution and hide the problem from the client.
- In addition, a Business Delegate can cache references to remote business services in order to improve performance. Calling a remote service is a costly operation, and the repetition of remote service calls can greatly increase network traffic.
However, as new scenarios have arisen, things have evolved in the world of distributed application development. The JEE architecture has been changing in accordance with this. As modern mobile applications and web clients developed, new client applications, with rich JavaScript frameworks, have been emerging. As a consequence, the Business Delegate is seen as a bridge or door between the presentation tier (where technologies such as Servlet, JSP, and the JSF mechanism reside) and the business tier (where technologies such as EJB reside).
推薦閱讀
- Citrix XenApp Performance Essentials
- 樂學Windows操作系統
- 白話區塊鏈
- WindowsServer2012Hyper-V虛擬化部署與管理指南
- 新手易學:系統安裝與重裝
- 竹林蹊徑:深入淺出windows驅動開發
- Ceph分布式存儲實戰
- ElasticSearch Cookbook
- Fedora 12 Linux應用基礎
- Linux系統最佳實踐工具:命令行技術
- Hands-On GPU Programming with Python and CUDA
- Heroku Cloud Application Development
- Implementing Domain-Specific Languages with Xtext and Xtend(Second Edition)
- Getting Started with Citrix XenApp 6.5
- Apache ShardingSphere權威指南