I am using Tomcat4.0 and JBoss2.3 for a project which has a lot of content of different types. But most of the content remains the same over a lot of pages and hence i broke them into JSP include pages.
So my question is - is including (ablout 8 files)going to hurt the performance ?
If i am using a Stateful session EJB - will it be thread safe to do that ? Viz.. include file login.jsp will instantiate the Session EJB, and other includes will do perform some actions on behalf of user using the same session EJB.
-
Performance hurt? (1 messages)
- Posted by: Deepak Pai
- Posted on: November 30 2001 17:51 EST
Threaded Messages (1)
- Performance hurt? by Kapil Israni on December 02 2001 23:14 EST
-
Performance hurt?[ Go to top ]
- Posted by: Kapil Israni
- Posted on: December 02 2001 23:14 EST
- in response to Deepak Pai
calls to ejb's are serialized. so u dont have to worry bout.
that brings up a question i have. can i somehow make sure that call to ejb's r not serialized.