{{theTime}}

Search This Blog

Total Pageviews

J2ee Patterns: Business Tier: Business Deligate

To hide clients from complexity of remote communication with business service components
Minimize coupling between Clients and business services
Translate Network/Look exceptions to application / user exceptions
Introduces one more layer but hides remoteness.
Click here to view class & sequence diagrams of business deligate

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...