- 论坛徽章:
- 0
|
使用ejb的时机(请各位高手补充)-----摘自java程序设计:j2ee
From Rod Johnson's "Expert One-on-One J2EE Design and Development":
Implications of Using EJB:
- Using EJB makes applications harder to test
- Using EJB makes applications harder to deploy
- Using EJB with remote interfaces may hamper practicing OO design
- Using EJB may make simple things hard
- Reduced choice of application servers
Questionable Arguments for Using EJB:
- To ensure clean architecture by exposing business objects as EJBs
- To permit the use of entity beans for data access
- To develop scalable, robust applications
Compelling Arguments for Using EJB:
- To allow remote access to application components
- To allow application components to be spread across multiple physical servers
- To support multiple Java or CORBA client types
- To implement message consumers when an asynchronous model is appropriate
Important:
EJBs are a good solution to problems of distributed applications and complex transaction management. However, many applications don't encounter these problems. EJBs add unnecessary complexity in such applications. An EJB solution can be likened to a truck and a web application to a car. When we need to perform certain tasks, such as moving large objects, a truck will be far more effective than a car, but when a truck and a car can do the same job, the car will be faster, cheaper to run, more maneuverable and more fun to drive. |
|