| Article: |
The PHP Scalability Myth | |
| Subject: | "EJB is the core J2EE"? | |
| Date: | 2003-10-16 14:46:31 | |
| From: | anonymous2 | |
|
Response to: Performance NOT EQUALS to Scalable
|
||
|
I think you will find that "EJB is the core J2EE" is not a universally held belief. Especially because of the performance issues with EJB deployment even in the 2.0 standard. A good read on this is Manning's "Bitter EJB" which goes into detail on EJB performance problems and offers architectural alternatives.
|
||
Showing messages 1 through 1 of 1.
-
"EJB is the core J2EE"?
2003-10-17 10:30:02 anonymous2 [View]



Local entities are entities that are local to the clients that are running in the same VM as the EJB container. By using local entities you are assuring that references are used and not remote objects. This doesn't help you with speeding up your servlet/JSPs. Value objects do that.